diff --git a/CHANGELOG.md b/CHANGELOG.md index 477423c..c32fbbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Changelog -### [2.13.2] - 2022-11- +### [2.13.2] - 2022-11-05 #### Fixed - fix incorrect results in `Hamming.normalized_similarity` - fix incorrect score_cutoff handling in pure python implementation of diff --git a/setup.py b/setup.py index 70842b7..054836c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ with open("README.md", encoding="utf8") as f: setup_args = { "name": "rapidfuzz", - "version": "2.13.1", + "version": "2.13.2", "extras_require": {"full": ["numpy"]}, "url": "https://github.com/maxbachmann/RapidFuzz", "author": "Max Bachmann", diff --git a/src/rapidfuzz/__init__.py b/src/rapidfuzz/__init__.py index f079079..3ef46ca 100644 --- a/src/rapidfuzz/__init__.py +++ b/src/rapidfuzz/__init__.py @@ -3,7 +3,7 @@ rapid string matching library """ __author__: str = "Max Bachmann" __license__: str = "MIT" -__version__: str = "2.13.1" +__version__: str = "2.13.2" from rapidfuzz import distance, fuzz, process, string_metric, utils