Skip to content

Commit

Permalink
Bump version: 11.1.1-rc1 -> 11.1.1-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausKlein committed Jan 14, 2025
1 parent 41c6089 commit 0d80443
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ message = Bump version: {current_version} -> {new_version}
tag_message = Release v{new_version}
tag_name = v{new_version}
tag = False
current_version = 11.1.1-rc1
current_version = 11.1.1-rc2
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)([-](?P<release>(dev|rc))+(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}{build}
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if(CMAKE_CXX_SCAN_FOR_MODULES)
endif()

project(fmt
VERSION 11.1.1.1
VERSION 11.1.1.2
DESCRIPTION "A modern formatting library"
HOMEPAGE_URL https://fmt.dev/11.0/
LANGUAGES CXX
Expand Down
2 changes: 1 addition & 1 deletion module/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if(PROJECT_IS_TOP_LEVEL)
enable_testing()

# Find the fmt package containing the function to build the module
find_package(fmt 11.1.1.1 EXACT REQUIRED HINT ../../stagedir/lib)
find_package(fmt 11.1.1.2 EXACT REQUIRED HINT ../../stagedir/lib)

# Use modules?
unset(USE_MODULES)
Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if(PROJECT_IS_TOP_LEVEL)
set(CMAKE_CXX_SCAN_FOR_MODULES ON)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

find_package(fmt 11.1.1.1 EXACT REQUIRED HINT ../stagedir/lib)
find_package(fmt 11.1.1.2 EXACT REQUIRED HINT ../stagedir/lib)

add_subdirectory(../module/tests module_test)
endif()
Expand Down

0 comments on commit 0d80443

Please sign in to comment.