Skip to content

Commit

Permalink
release v2.13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Dec 8, 2022
1 parent 88d76eb commit 42550d7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion extern/rapidfuzz-cpp
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.3",
"version": "2.13.4",
"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.3"
__version__: str = "2.13.4"

from rapidfuzz import distance, fuzz, process, string_metric, utils

Expand Down

0 comments on commit 42550d7

Please sign in to comment.