Skip to content

Commit

Permalink
add damerau levenshtein implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Aug 20, 2022
1 parent 1d63267 commit f860f64
Show file tree
Hide file tree
Showing 14 changed files with 1,389 additions and 102 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changelog

### [1.2.0] - 2022-08-20
#### Added
- added damerau levenshtein implementation
- Not API stable yet, since it will be extended with weights in a future version

### [1.1.1] - 2022-07-29
#### Performance
- improve performance for banded Levenshtein implementation
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
message(FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR}/CMakeCache.txt")
endif()

project(rapidfuzz LANGUAGES CXX VERSION 1.1.1)
project(rapidfuzz LANGUAGES CXX VERSION 1.2.0)

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
include(GNUInstallDirs)
Expand Down
Loading

0 comments on commit f860f64

Please sign in to comment.