File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
+ ## [ 3.1.0] - 2024-07-02
4
+ ### Changed
5
+ - split ` editops_apply ` /` opcodes_apply ` into ` *_apply_str ` and ` *_apply_vec ` . This avoids the instantiation of
6
+ std::basic_string for unsupported types.
7
+
3
8
## [ 3.0.5] - 2024-07-02
4
9
### Fixed
5
10
- the editops implementation didn't properly account for some cells in the Levenshtein matrix.
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
32
32
message (FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR} /CMakeCache.txt" )
33
33
endif ()
34
34
35
- project (rapidfuzz LANGUAGES CXX VERSION 3.0.5 )
35
+ project (rapidfuzz LANGUAGES CXX VERSION 3.1.0 )
36
36
37
37
list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR} /cmake" )
38
38
include (GNUInstallDirs)
You can’t perform that action at this time.
0 commit comments