From 6e0a7bb630ec028cde6a99a188001524e49b691d Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Sat, 3 Dec 2022 12:18:42 +0100 Subject: [PATCH] release 2.13.2 --- CHANGELOG.md | 8 +++++++- setup.py | 2 +- src/rapidfuzz/__init__.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3491f267..d520c432 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,14 @@ ## Changelog -### [2.14.0] - +### [2.13.3] - 2022-12-03 #### Fixed - improve handling of functions wrapped using `functools.wraps` +- fix broken fallback to Python implementation when the a `ImportError` occurs on import. + This can e.g. occur when the binary has a dependency on libatomic, but it is unavailable on + the system +- define `CMAKE_C_COMPILER_AR`/`CMAKE_CXX_COMPILER_AR`/`CMAKE_C_COMPILER_RANLIB`/`CMAKE_CXX_COMPILER_RANLIB` + if they are not defined yet + ### [2.13.2] - 2022-11-05 #### Fixed diff --git a/setup.py b/setup.py index 054836c4..862b3855 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def show_message(*lines): setup_args = { "name": "rapidfuzz", - "version": "2.13.2", + "version": "2.13.3", "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 3ef46caa..fa4cbdab 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.2" +__version__: str = "2.13.3" from rapidfuzz import distance, fuzz, process, string_metric, utils