From a9887c123b004466780dc7081ea7fd484c81e3e7 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Sat, 23 Apr 2022 23:29:25 +0200 Subject: [PATCH] Release v2.0.11 --- CHANGELOG.md | 4 ++++ docs/conf.py | 2 +- rapidfuzz/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 674955d..9628cd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Changelog +### [2.0.11] - 2022-04-23 +#### Changed +- relax version requirements of dependencies to simplify packaging + ### [2.0.10] - 2022-04-17 #### Fixed - Do not include installations of jaro_winkler in wheels (regression from 2.0.7) diff --git a/docs/conf.py b/docs/conf.py index 2dd9c4c..d80b5f4 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.10' +release = '2.0.11' # -- General configuration --------------------------------------------------- diff --git a/rapidfuzz/__init__.py b/rapidfuzz/__init__.py index a0ec907..45e2538 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.10" +__version__ = "2.0.11" from rapidfuzz import ( process, diff --git a/setup.py b/setup.py index 9f126c7..0bf720e 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open('README.md', 'rt', encoding="utf8") as f: setup( name="rapidfuzz", - version="2.0.10", + version="2.0.11", install_requires=["jarowinkler >= 1.0.2, < 1.1.0"], extras_require={'full': ['numpy']}, url="https://github.com/maxbachmann/RapidFuzz",