We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c5dad2 commit 5637ec5Copy full SHA for 5637ec5
CHANGELOG.md
@@ -1,6 +1,6 @@
1
## Changelog
2
3
-## [3.0.0] - 2023-11-
+## [3.0.0] - 2023-12-26
4
### Performance
5
- add banded implementation of LCS / Indel. This improves the runtime from `O((|s1|/64) * |s2|)` to `O((score_cutoff/64) * |s2|)`
6
CMakeLists.txt
@@ -32,7 +32,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
32
message(FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR}/CMakeCache.txt")
33
endif()
34
35
-project(rapidfuzz LANGUAGES CXX VERSION 2.3.0)
+project(rapidfuzz LANGUAGES CXX VERSION 3.0.0)
36
37
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
38
include(GNUInstallDirs)
0 commit comments