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 1406b08 commit 2278c3dCopy full SHA for 2278c3d
2 files changed
CHANGELOG.md
@@ -1,5 +1,13 @@
1
## Changelog
2
3
+### [1.1.0] - 2022-07-29
4
+#### Fixed
5
+- fix banded Levenshtein implementation
6
+
7
+#### Changed
8
+- implement Hirschbergs algorithms to reduce memory usage of
9
+ levenshtein_editops
10
11
### [1.0.5] - 2022-07-23
12
#### Fixed
13
- fix opcode conversion for empty source sequence
CMakeLists.txt
@@ -20,7 +20,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
20
message(FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR}/CMakeCache.txt")
21
endif()
22
23
-project(rapidfuzz LANGUAGES CXX VERSION 1.0.5)
+project(rapidfuzz LANGUAGES CXX VERSION 1.1.0)
24
25
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
26
include(GNUInstallDirs)
0 commit comments