From 42550d77f1f9a24bb456928bc53cc240c36e31fa Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Thu, 8 Dec 2022 20:51:48 +0100 Subject: [PATCH] release v2.13.4 --- CHANGELOG.md | 3 ++- extern/rapidfuzz-cpp | 2 +- setup.py | 2 +- src/rapidfuzz/__init__.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ab23bc7..a12d2983 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,13 @@ ## Changelog -### [2.14.0] - +### [2.13.4] - 2022-12-08 #### Changed - handle `float("nan")` similar to None for query / choice, since this is common for non-existent data in tools like numpy #### Fixed - fix handling on `None`/`float("nan")` in `process.distance` +- use absolute imports inside tests ### [2.13.3] - 2022-12-03 #### Fixed diff --git a/extern/rapidfuzz-cpp b/extern/rapidfuzz-cpp index 93a0b5d9..749d32ad 160000 --- a/extern/rapidfuzz-cpp +++ b/extern/rapidfuzz-cpp @@ -1 +1 @@ -Subproject commit 93a0b5d903efc6a60483116c7fe43e23dd152c8e +Subproject commit 749d32ad560d5d9c9917dec61f5d28c2b0923a78 diff --git a/setup.py b/setup.py index 862b3855..f25bc036 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def show_message(*lines): setup_args = { "name": "rapidfuzz", - "version": "2.13.3", + "version": "2.13.4", "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 fa4cbdab..8cf47a73 100644 --- a/src/rapidfuzz/__init__.py +++ b/src/rapidfuzz/__init__.py @@ -3,7 +3,7 @@ """ __author__: str = "Max Bachmann" __license__: str = "MIT" -__version__: str = "2.13.3" +__version__: str = "2.13.4" from rapidfuzz import distance, fuzz, process, string_metric, utils