From ca104c444b10b0371ae2f61e48289b102c0db6eb Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Thu, 23 Jun 2022 14:09:55 +0200 Subject: [PATCH] release v2.0.14 --- CHANGELOG.md | 2 +- docs/conf.py | 2 +- rapidfuzz/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca48a9c..05dba15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/conf.py b/docs/conf.py index 80548e5..5bec33f 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.13' +release = '2.0.14' # -- General configuration --------------------------------------------------- diff --git a/rapidfuzz/__init__.py b/rapidfuzz/__init__.py index 9dbab10..2c74f33 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.13" +__version__ = "2.0.14" from rapidfuzz import ( process, diff --git a/setup.py b/setup.py index 500258a..fc41004 100644 --- a/setup.py +++ b/setup.py @@ -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",