release v2.4.2
This commit is contained in:
parent
6ce2e4311c
commit
b09b76d9b8
|
@ -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
|
||||
|
|
|
@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann'
|
|||
author = 'Max Bachmann'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '2.4.2'
|
||||
release = '2.4.3'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
2
setup.py
2
setup.py
|
@ -11,7 +11,7 @@ with open('README.md', 'rt', encoding="utf8") as f:
|
|||
|
||||
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",
|
||||
|
|
|
@ -3,6 +3,6 @@ rapid string matching library
|
|||
"""
|
||||
__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
|
||||
|
|
Loading…
Reference in New Issue