release v2.0.14

This commit is contained in:
Max Bachmann 2022-06-23 14:09:55 +02:00
parent de0f6d8af3
commit ca104c444b
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
## Changelog
### [2.0.14] - 2022-06-
### [2.0.14] - 2022-06-23
#### Fixed
- fix unlimited recursion in LCSseq when used in combination with the process module

View File

@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann'
author = 'Max Bachmann'
# The full version, including alpha/beta/rc tags
release = '2.0.13'
release = '2.0.14'
# -- General configuration ---------------------------------------------------

View File

@ -3,7 +3,7 @@ rapid string matching library
"""
__author__ = "Max Bachmann"
__license__ = "MIT"
__version__ = "2.0.13"
__version__ = "2.0.14"
from rapidfuzz import (
process,

View File

@ -7,7 +7,7 @@ with open('README.md', 'rt', encoding="utf8") as f:
setup(
name="rapidfuzz",
version="2.0.13",
version="2.0.14",
install_requires=["jarowinkler >= 1.0.3, < 1.1.0"],
extras_require={'full': ['numpy']},
url="https://github.com/maxbachmann/RapidFuzz",