From fb6824e849f2a201ec42ba3d1dbc191f65b2345a Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Sat, 5 Dec 2020 15:52:43 +0100 Subject: [PATCH] increase performance of default_process use lookup tables for the string conversions instead of many branches, which greatly increases the performance --- VERSION | 2 +- src/rapidfuzz-cpp | 2 +- src/rapidfuzz/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index dffa40e..c37136a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.13.4 +0.13.5 diff --git a/src/rapidfuzz-cpp b/src/rapidfuzz-cpp index 0cbbee6..4b64c63 160000 --- a/src/rapidfuzz-cpp +++ b/src/rapidfuzz-cpp @@ -1 +1 @@ -Subproject commit 0cbbee61bd9a2401e45c96a3d3d6ab640317ccce +Subproject commit 4b64c630949006d9a43465976d1c222cb6565593 diff --git a/src/rapidfuzz/__init__.py b/src/rapidfuzz/__init__.py index b58cb82..5358837 100644 --- a/src/rapidfuzz/__init__.py +++ b/src/rapidfuzz/__init__.py @@ -3,6 +3,6 @@ rapid string matching library """ __author__ = "Max Bachmann" __license__ = "MIT" -__version__ = "0.13.4" +__version__ = "0.13.5" from rapidfuzz import process, fuzz, utils, levenshtein