release 2.13.2
This commit is contained in:
parent
6d704f6791
commit
4fbf41d5b0
|
@ -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
|
||||
|
|
2
setup.py
2
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",
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue