File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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" )
2525endif ()
2626
27- project (rapidfuzz LANGUAGES CXX VERSION 1.10.2 )
27+ project (rapidfuzz LANGUAGES CXX VERSION 1.10.3 )
2828
2929list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR } /cmake" )
3030include (GNUInstallDirs )
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ endif()
1616include (FetchContent )
1717
1818if (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)
2020else ()
2121 FetchContent_Declare (_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.25.2.zip)
2222endif ()
You can’t perform that action at this time.
0 commit comments