File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed
Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ if(NOT CMAKE_CONFIGURATION_TYPES)
108108 endif ()
109109endif ()
110110
111- project (mixxx VERSION 2.3.3 )
111+ project (mixxx VERSION 2.3.4 )
112112# Work around missing version suffixes support https://gitlab.kitware.com/cmake/cmake/-/issues/16716
113113set (MIXXX_VERSION_PRERELEASE "" ) # set to "alpha-pre" "beta" or ""
114114
Original file line number Diff line number Diff line change @@ -33,19 +33,13 @@ if(NOT GIT_DESCRIBE)
3333 else ()
3434 message (NOTICE "Git branch: ${GIT_BRANCH} " )
3535 endif ()
36-
37- # Get the number of commits on the working branch
38- execute_process (
39- COMMAND git rev-list --count --first-parent HEAD
40- WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR} "
41- OUTPUT_VARIABLE GIT_COMMIT_COUNT
42- OUTPUT_STRIP_TRAILING_WHITESPACE
43- ERROR_QUIET
44- )
45- if (NOT GIT_COMMIT_COUNT)
46- message (NOTICE "Git commit count: unknown" )
47- else ()
36+ # Get the number of commits since the version tag
37+ string (REGEX MATCH ".*-([0-9]*)-.*" GIT_COMMIT_COUNT_MATCH "${GIT_DESCRIBE} " )
38+ if (GIT_COMMIT_COUNT_MATCH)
39+ set (GIT_COMMIT_COUNT "${CMAKE_MATCH_1} " )
4840 message (NOTICE "Git commit count: ${GIT_COMMIT_COUNT} " )
41+ else ()
42+ message (NOTICE "Git commit count: unknown" )
4943 endif ()
5044 endif ()
5145else ()
Original file line number Diff line number Diff line change 1+ mixxx (2.3.3-1~bionic) bionic; urgency=medium
2+
3+ * Build of 2.3.3
4+
5+ -- RJ Skerry-Ryan <
[email protected] > Tue, 21 Jun 2022 21:24:47 +0000
6+
17mixxx (2.3.2-1~bionic) bionic; urgency=medium
28
39 * Build of 2.3.2
You can’t perform that action at this time.
0 commit comments