From 3314798a7ee4f69d1a078aad93278fc215ac1fb9 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Mon, 13 Dec 2021 23:28:17 +0100 Subject: [PATCH] fix crash in editops --- VERSION | 2 +- docs/conf.py | 2 +- extern/rapidfuzz-cpp | 2 +- src/rapidfuzz/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index f8e233b..9ab8337 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.0 +1.9.1 diff --git a/docs/conf.py b/docs/conf.py index f7b2a69..59e4a65 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann' author = 'Max Bachmann' # The full version, including alpha/beta/rc tags -release = '1.9.0' +release = '1.9.1' # -- General configuration --------------------------------------------------- diff --git a/extern/rapidfuzz-cpp b/extern/rapidfuzz-cpp index d58a069..103674d 160000 --- a/extern/rapidfuzz-cpp +++ b/extern/rapidfuzz-cpp @@ -1 +1 @@ -Subproject commit d58a06989d7790592ce6baf1eade93f70ab7d502 +Subproject commit 103674db0785f6c1c8e247abc850e48c75c22e1c diff --git a/src/rapidfuzz/__init__.py b/src/rapidfuzz/__init__.py index c441533..2e33dc2 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__ = "1.9.0" +__version__ = "1.9.1" from rapidfuzz import process, fuzz, utils, levenshtein, string_metric