Skip to content

Commit

Permalink
release 2.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann authored Dec 3, 2022
1 parent fe82774 commit 6e0a7bb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/rapidfuzz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 6e0a7bb

Please sign in to comment.