File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
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
4
8
#### Fixed
5
9
- ` fuzz::partial_ratio ` was not always symmetric when ` len(s1) == len(s2) `
6
10
- fix undefined behavior in experimental SIMD implementaton
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
24
24
message (FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR} /CMakeCache.txt" )
25
25
endif ()
26
26
27
- project (rapidfuzz LANGUAGES CXX VERSION 1.10.2 )
27
+ project (rapidfuzz LANGUAGES CXX VERSION 1.10.3 )
28
28
29
29
list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR} /cmake" )
30
30
include (GNUInstallDirs )
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ endif()
16
16
include (FetchContent )
17
17
18
18
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 )
20
20
else ()
21
21
FetchContent_Declare (_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.25.2.zip )
22
22
endif ()
You can’t perform that action at this time.
0 commit comments