diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a08059..0116a1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Changelog +### [2.0.7] - 2022-03-13 +#### Fixed +- Do not include installations of jaro_winkler and taskflow in wheels + ### [2.0.6] - 2022-03-06 #### Fixed - fix incorrect population of sys.modules which lead to submodules overshadowing diff --git a/docs/conf.py b/docs/conf.py index 3184a7a..e5a805c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann' author = 'Max Bachmann' # The full version, including alpha/beta/rc tags -release = '2.0.6' +release = '2.0.7' # -- General configuration --------------------------------------------------- diff --git a/rapidfuzz/__init__.py b/rapidfuzz/__init__.py index 7aac862..9924dcd 100644 --- a/rapidfuzz/__init__.py +++ b/rapidfuzz/__init__.py @@ -3,7 +3,7 @@ rapid string matching library """ __author__ = "Max Bachmann" __license__ = "MIT" -__version__ = "2.0.6" +__version__ = "2.0.7" from rapidfuzz import ( process, diff --git a/setup.py b/setup.py index fd488af..83b9c2f 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ with open('README.md', 'rt', encoding="utf8") as f: setup( name="rapidfuzz", - version="2.0.6", - install_requires=["jarowinkler >= 1.0.1, < 1.1.0"], + version="2.0.7", + install_requires=["jarowinkler >= 1.0.2, < 1.1.0"], extras_require={'full': ['numpy']}, url="https://github.com/maxbachmann/RapidFuzz", author="Max Bachmann",