From 6269c13ac8bd2684d90f7967eb50d07d78055baf Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Mon, 9 Oct 2023 02:39:50 +0200 Subject: [PATCH] fix edge case in simd implementation of Jaro/JaroWinkler --- CHANGELOG.rst | 2 +- extern/rapidfuzz-cpp | 2 +- setup.py | 2 +- src/rapidfuzz/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ce87a92e..111dfe26 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ Changelog --------- -[3.4.0] - 2023-10-08 +[3.4.0] - 2023-10-09 ^^^^^^^^^^^^^^^^^^^^ Changed ~~~~~~~ diff --git a/extern/rapidfuzz-cpp b/extern/rapidfuzz-cpp index d13f1f7f..7a30d6b5 160000 --- a/extern/rapidfuzz-cpp +++ b/extern/rapidfuzz-cpp @@ -1 +1 @@ -Subproject commit d13f1f7fa8051b0afde7acdaf8afdc0209e4ae2f +Subproject commit 7a30d6b5e4490a2f56ad9885719022b202d296c2 diff --git a/setup.py b/setup.py index c57b33fc..83179e75 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def show_message(*lines): setup_args = { "name": "rapidfuzz", - "version": "3.3.1", + "version": "3.4.0", "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 e16ad353..bbe256f6 100644 --- a/src/rapidfuzz/__init__.py +++ b/src/rapidfuzz/__init__.py @@ -5,7 +5,7 @@ __author__: str = "Max Bachmann" __license__: str = "MIT" -__version__: str = "3.3.1" +__version__: str = "3.4.0" from rapidfuzz import distance, fuzz, process, utils