Skip to content

Commit 47f180f

Browse files
authored
fix cmake warning
1 parent 91830ec commit 47f180f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
## Changelog
22

3-
### [1.10.2] - 2022-12-1
3+
### [1.10.3] - 2022-12-13
4+
#### Fixed
5+
- fix warning about `project_options` when building the test suite with `cmake>=3.24`
6+
7+
### [1.10.2] - 2022-12-01
48
#### Fixed
59
- `fuzz::partial_ratio` was not always symmetric when `len(s1) == len(s2)`
610
- fix undefined behavior in experimental SIMD implementaton

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
2424
message(FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR}/CMakeCache.txt")
2525
endif()
2626

27-
project(rapidfuzz LANGUAGES CXX VERSION 1.10.2)
27+
project(rapidfuzz LANGUAGES CXX VERSION 1.10.3)
2828

2929
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
3030
include(GNUInstallDirs)

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ endif()
1616
include(FetchContent)
1717

1818
if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.20)
19-
FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.26.1.zip)
19+
FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.26.2.zip)
2020
else()
2121
FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.25.2.zip)
2222
endif()

0 commit comments

Comments
 (0)