Skip to content

Commit 7e712c5

Browse files
Merge pull request #11278 from daschuer/2.3.4
2.3.4 Release
2 parents 69d6547 + 66b4339 commit 7e712c5

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ if(NOT CMAKE_CONFIGURATION_TYPES)
108108
endif()
109109
endif()
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
113113
set(MIXXX_VERSION_PRERELEASE "") # set to "alpha-pre" "beta" or ""
114114

cmake/modules/GitInfo.cmake

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff 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()
5145
else()

packaging/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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+
17
mixxx (2.3.2-1~bionic) bionic; urgency=medium
28

39
* Build of 2.3.2

0 commit comments

Comments
 (0)