From 7aedd250634accd34b73776fc5f36c546b3acd07 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Tue, 20 Dec 2022 21:26:33 +0100 Subject: [PATCH] release v2.13.7 --- CHANGELOG.rst | 2 +- setup.py | 2 +- src/rapidfuzz/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c8a74733..ef3ee396 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ Changelog --------- -[2.13.7] - +[2.13.7] - 2022-12-20 ^^^^^^^^^^^^^^^^^^^^^ Fixed ~~~~~~~ diff --git a/setup.py b/setup.py index 3d16e173..567c9f5b 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def show_message(*lines): setup_args = { "name": "rapidfuzz", - "version": "2.13.6", + "version": "2.13.7", "extras_require": {"full": ["numpy"]}, "url": "https://github.com/maxbachmann/RapidFuzz", "author": "Max Bachmann", diff --git a/src/rapidfuzz/__init__.py b/src/rapidfuzz/__init__.py index 1750bcf5..d45e73b9 100644 --- a/src/rapidfuzz/__init__.py +++ b/src/rapidfuzz/__init__.py @@ -3,7 +3,7 @@ """ __author__: str = "Max Bachmann" __license__: str = "MIT" -__version__: str = "2.13.6" +__version__: str = "2.13.7" from rapidfuzz import distance, fuzz, process, string_metric, utils