From 9fe4470597f3174279cccb770deaf8a906309e56 Mon Sep 17 00:00:00 2001 From: atomflunder <80397293+atomflunder@users.noreply.github.com> Date: Tue, 6 Jun 2023 22:04:46 +0200 Subject: [PATCH] Bump version to 0.14.2 --- CHANGELOG.md | 4 ++++ docs/installation.md | 4 ++-- stringmatch/__init__.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bb87cd..4835791 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This is a broad overview of the changes that have been made over the lifespan of this library. +## v0.14.2 - 2023-06-06 + +- Upgrade to rapidfuzz Version 3.x + ## v0.14.1 - 2022-10-12 - Add Python 3.11 support diff --git a/docs/installation.md b/docs/installation.md index 050368e..a574a08 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -15,13 +15,13 @@ pip install -U git+https://github.com/atomflunder/stringmatch To install a specific Version: ``` -pip install -U stringmatch==0.14.1 +pip install -U stringmatch==0.14.2 ``` Or: ``` -pip install -U git+https://github.com/atomflunder/stringmatch.git@v0.14.1 +pip install -U git+https://github.com/atomflunder/stringmatch.git@v0.14.2 ``` After you installed stringmatch, head on over to the Basic Usage tab to get familiar with its functions. diff --git a/stringmatch/__init__.py b/stringmatch/__init__.py index a49ab7a..03ba379 100644 --- a/stringmatch/__init__.py +++ b/stringmatch/__init__.py @@ -10,7 +10,7 @@ from stringmatch.strings import Strings __title__ = "stringmatch" -__version__ = "0.14.1" +__version__ = "0.14.2" __all__ = ( "Distance", "Match",