diff --git a/CHANGELOG.md b/CHANGELOG.md index 49a0f324..fd35671a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ ## Changelog -### [2.5.0] - 2022-08- - +### [2.4.3] - 2022-08-08 #### Fixed - fix value range of `jaro_similarity`/`jaro_winkler_similarity` in the pure Python mode for the string_metric module +- fix missing atomix symbol on arm 32 bit ### [2.4.2] - 2022-07-30 #### Fixed diff --git a/docs/conf.py b/docs/conf.py index edfa396e..737e2a87 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Max Bachmann' # The full version, including alpha/beta/rc tags -release = '2.4.2' +release = '2.4.3' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 0291d12e..4be6dda1 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def show_message(*lines): setup_args = { "name": "rapidfuzz", - "version": "2.4.2", + "version": "2.4.3", "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 ed06c946..6f882c7d 100644 --- a/src/rapidfuzz/__init__.py +++ b/src/rapidfuzz/__init__.py @@ -3,6 +3,6 @@ """ __author__: str = "Max Bachmann" __license__: str = "MIT" -__version__: str = "2.4.2" +__version__: str = "2.4.3" from rapidfuzz import process, distance, fuzz, string_metric, utils