File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff 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)
2528if (NOT DEFINED UNIVERSAL_VERSION_MAJOR)
2629 find_package (Git QUIET )
2730 if (GIT_FOUND)
You can’t perform that action at this time.
0 commit comments