Release v2.0.11

This commit is contained in:
Max Bachmann 2022-04-23 23:29:25 +02:00
parent 5074585b9e
commit a9887c123b
4 changed files with 7 additions and 3 deletions

View File

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

View File

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

View File

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

View File

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