From 29abf8fd2b1a8cd03fe970b815c65ed0a0d4e6d8 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Wed, 22 Jun 2022 12:06:45 +0200 Subject: [PATCH] release 2.0.12 --- docs/conf.py | 2 +- rapidfuzz/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index d80b5f40..c36c56a8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Max Bachmann' # The full version, including alpha/beta/rc tags -release = '2.0.11' +release = '2.0.12' # -- General configuration --------------------------------------------------- diff --git a/rapidfuzz/__init__.py b/rapidfuzz/__init__.py index 45e25386..21ef7a16 100644 --- a/rapidfuzz/__init__.py +++ b/rapidfuzz/__init__.py @@ -3,7 +3,7 @@ """ __author__ = "Max Bachmann" __license__ = "MIT" -__version__ = "2.0.11" +__version__ = "2.0.12" from rapidfuzz import ( process, diff --git a/setup.py b/setup.py index 0bf720ed..2c3c46ad 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ setup( name="rapidfuzz", - version="2.0.11", - install_requires=["jarowinkler >= 1.0.2, < 1.1.0"], + version="2.0.12", + install_requires=["jarowinkler >= 1.0.3, < 1.1.0"], extras_require={'full': ['numpy']}, url="https://github.com/maxbachmann/RapidFuzz", author="Max Bachmann",