Skip to content

Commit 3e8c54e

Browse files
committed
chore: update fallback version to 4.0.0
1 parent ebfceca commit 3e8c54e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

CMakeLists.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,13 @@ endif(POLICY CMP0048)
1818
# Set project variables
1919
# Version is derived from the most recent git tag (e.g., v4.0.0 -> 4.0.0).
2020
# The hardcoded fallback is used only when git is unavailable (installed packages, tarballs).
21-
# To release: push an annotated tag, e.g. git tag -a v4.0.0 -m "description"
22-
set(UNIVERSAL_FALLBACK_VERSION_MAJOR 3)
23-
set(UNIVERSAL_FALLBACK_VERSION_MINOR 105)
24-
set(UNIVERSAL_FALLBACK_VERSION_PATCH 2)
21+
# To release: push an annotated tag, e.g.
22+
# > git tag -a v4.0.0 -m "feat!: description"
23+
# > git push origin v4.0.0
24+
# CI will pick it up and generate a release
25+
set(UNIVERSAL_FALLBACK_VERSION_MAJOR 4)
26+
set(UNIVERSAL_FALLBACK_VERSION_MINOR 0)
27+
set(UNIVERSAL_FALLBACK_VERSION_PATCH 0)
2528
if(NOT DEFINED UNIVERSAL_VERSION_MAJOR)
2629
find_package(Git QUIET)
2730
if(GIT_FOUND)

0 commit comments

Comments
 (0)