Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Copyright: None
License: CC0-1.0

# cmake
Files: *.cmake *CMakeLists.txt *.pc.in, cmake/*.in misc/*.in
Files: *.cmake *CMakeLists.txt *.pc.in, cmake/*.in misc/*.in VERSION
Copyright: None
License: CC0-1.0

Expand Down
1 change: 1 addition & 0 deletions .syncexclude
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@
# are always ignored
linglong.yaml
conanfile.py
VERSION
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [5.7.17] - 2025-06-06

### Added

- Feat(ci): add auto release

### Changed

- Support VERSION file

### Fixed

- .deepin@main -> .deepin@master

<a name="5.7.14"></a>
## 5.7.14 (2025-04-12)

Expand Down
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
cmake_minimum_required (VERSION 3.13)

set (DTK_VERSION "5.6.12" CACHE STRING "define project version")
file(READ "${CMAKE_CURRENT_SOURCE_DIR}/VERSION" DTK_FILE_VERSION)
string(STRIP "${DTK_FILE_VERSION}" DTK_FILE_VERSION)
set(DTK_VERSION "${DTK_FILE_VERSION}" CACHE STRING "DTK version")

project (DtkCore
VERSION ${DTK_VERSION}
DESCRIPTION "DTK Core module"
Expand Down
1 change: 1 addition & 0 deletions VERSION.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@version@
Loading