diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e974fb..ecbbb83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Changelog +### [2.4.1] - 2022-07-29 +#### Fixed +- fix version number + ### [2.4.0] - 2022-07-29 #### Fixed - fix banded Levenshtein implementation diff --git a/CMakeLists.txt b/CMakeLists.txt index 5cac6ae..68e5f8a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ else() add_library(Taskflow::Taskflow ALIAS Taskflow) endif() -find_package(rapidfuzz 1.1.0 QUIET) +find_package(rapidfuzz 1.1.1 QUIET) if (rapidfuzz_FOUND) message("Using system supplied version of rapidfuzz-cpp") else() diff --git a/docs/conf.py b/docs/conf.py index 59104cf..69e89d4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann' author = 'Max Bachmann' # The full version, including alpha/beta/rc tags -release = '2.3.0' +release = '2.4.1' # -- General configuration --------------------------------------------------- diff --git a/extern/rapidfuzz-cpp b/extern/rapidfuzz-cpp index 2278c3d..d937555 160000 --- a/extern/rapidfuzz-cpp +++ b/extern/rapidfuzz-cpp @@ -1 +1 @@ -Subproject commit 2278c3d7371b26bf14bddbcc97c8945fe1c8f971 +Subproject commit d937555ad76a6f1ed853ab4b7102a7b22b6f0fcf diff --git a/setup.py b/setup.py index dcbf91c..ce9217f 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open('README.md', 'rt', encoding="utf8") as f: setup_args = { "name": "rapidfuzz", - "version": "2.3.0", + "version": "2.4.1", "install_requires": ["jarowinkler >= 1.2.0, < 2.0.0"], "extras_require": {'full': ['numpy']}, "url": "https://github.com/maxbachmann/RapidFuzz", diff --git a/src/rapidfuzz/__init__.py b/src/rapidfuzz/__init__.py index bf110fe..4b07190 100644 --- a/src/rapidfuzz/__init__.py +++ b/src/rapidfuzz/__init__.py @@ -3,6 +3,6 @@ rapid string matching library """ __author__: str = "Max Bachmann" __license__: str = "MIT" -__version__: str = "2.3.0" +__version__: str = "2.4.1" from rapidfuzz import process, distance, fuzz, string_metric, utils