release 2.13.2

This commit is contained in:
Max Bachmann 2022-11-05 23:15:44 +01:00 committed by GitHub
parent 6d704f6791
commit 4fbf41d5b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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",

View File

@ -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