Skip to content

Commit

Permalink
Merge pull request #11278 from daschuer/2.3.4
Browse files Browse the repository at this point in the history
2.3.4 Release
  • Loading branch information
JoergAtGithub authored Feb 26, 2023
2 parents 69d6547 + 66b4339 commit 7e712c5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ if(NOT CMAKE_CONFIGURATION_TYPES)
endif()
endif()

project(mixxx VERSION 2.3.3)
project(mixxx VERSION 2.3.4)
# Work around missing version suffixes support https://gitlab.kitware.com/cmake/cmake/-/issues/16716
set(MIXXX_VERSION_PRERELEASE "") # set to "alpha-pre" "beta" or ""

Expand Down
18 changes: 6 additions & 12 deletions cmake/modules/GitInfo.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,13 @@ if(NOT GIT_DESCRIBE)
else()
message(NOTICE "Git branch: ${GIT_BRANCH}")
endif()

# Get the number of commits on the working branch
execute_process(
COMMAND git rev-list --count --first-parent HEAD
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
OUTPUT_VARIABLE GIT_COMMIT_COUNT
OUTPUT_STRIP_TRAILING_WHITESPACE
ERROR_QUIET
)
if(NOT GIT_COMMIT_COUNT)
message(NOTICE "Git commit count: unknown")
else()
# Get the number of commits since the version tag
string(REGEX MATCH ".*-([0-9]*)-.*" GIT_COMMIT_COUNT_MATCH "${GIT_DESCRIBE}")
if (GIT_COMMIT_COUNT_MATCH)
set(GIT_COMMIT_COUNT "${CMAKE_MATCH_1}")
message(NOTICE "Git commit count: ${GIT_COMMIT_COUNT}")
else()
message(NOTICE "Git commit count: unknown")
endif()
endif()
else()
Expand Down
6 changes: 6 additions & 0 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
mixxx (2.3.3-1~bionic) bionic; urgency=medium

* Build of 2.3.3

-- RJ Skerry-Ryan <rryan@mixxx.org> Tue, 21 Jun 2022 21:24:47 +0000

mixxx (2.3.2-1~bionic) bionic; urgency=medium

* Build of 2.3.2
Expand Down

0 comments on commit 7e712c5

Please sign in to comment.