From 2ce46ef1c8cabae4fd1c6189a7eb944c159af49c Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Sat, 23 Jul 2022 00:50:21 +0200 Subject: [PATCH] release v2.3.0 --- CHANGELOG.md | 2 +- CMakeLists.txt | 2 +- docs/conf.py | 2 +- extern/rapidfuzz-cpp | 2 +- setup.py | 2 +- src/rapidfuzz/__init__.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 991697bb..b14a7cf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Changelog -### [2.3.0] - 2022-07- +### [2.3.0] - 2022-07-23 #### Added - add `as_matching_blocks` to `Editops`/`Opcodes` - add support for deletions from `Editops` diff --git a/CMakeLists.txt b/CMakeLists.txt index a7ac2253..232c975d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ else() add_library(Taskflow::Taskflow ALIAS Taskflow) endif() -find_package(rapidfuzz 1.0.4 QUIET) +find_package(rapidfuzz 1.0.5 QUIET) if (rapidfuzz_FOUND) message("Using system supplied version of rapidfuzz-cpp") else() diff --git a/docs/conf.py b/docs/conf.py index 7a37110b..59104cfc 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.2.0' +release = '2.3.0' # -- General configuration --------------------------------------------------- diff --git a/extern/rapidfuzz-cpp b/extern/rapidfuzz-cpp index a05cb6e7..1303f3de 160000 --- a/extern/rapidfuzz-cpp +++ b/extern/rapidfuzz-cpp @@ -1 +1 @@ -Subproject commit a05cb6e761b838adad7e4ddc9d57cb1d5dd62103 +Subproject commit 1303f3de46ca3d8de7e8e327f1f48e0859573318 diff --git a/setup.py b/setup.py index 39d32f46..dcbf91cb 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def show_message(*lines): setup_args = { "name": "rapidfuzz", - "version": "2.2.0", + "version": "2.3.0", "install_requires": ["jarowinkler >= 1.2.0, < 2.0.0"], "extras_require": {'full': ['numpy']}, "url": "https://github.com/maxbachmann/RapidFuzz", diff --git a/src/rapidfuzz/__init__.py b/src/rapidfuzz/__init__.py index 92cd8816..bf110fe0 100644 --- a/src/rapidfuzz/__init__.py +++ b/src/rapidfuzz/__init__.py @@ -3,6 +3,6 @@ """ __author__: str = "Max Bachmann" __license__: str = "MIT" -__version__: str = "2.2.0" +__version__: str = "2.3.0" from rapidfuzz import process, distance, fuzz, string_metric, utils