Skip to content

Commit 42550d7

Browse files
committed
release v2.13.4
1 parent 88d76eb commit 42550d7

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
## Changelog
22

3-
### [2.14.0] -
3+
### [2.13.4] - 2022-12-08
44
#### Changed
55
- handle `float("nan")` similar to None for query / choice, since this is common for
66
non-existent data in tools like numpy
77

88
#### Fixed
99
- fix handling on `None`/`float("nan")` in `process.distance`
10+
- use absolute imports inside tests
1011

1112
### [2.13.3] - 2022-12-03
1213
#### Fixed

extern/rapidfuzz-cpp

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def show_message(*lines):
1313

1414
setup_args = {
1515
"name": "rapidfuzz",
16-
"version": "2.13.3",
16+
"version": "2.13.4",
1717
"extras_require": {"full": ["numpy"]},
1818
"url": "https://github.com/maxbachmann/RapidFuzz",
1919
"author": "Max Bachmann",

src/rapidfuzz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
__author__: str = "Max Bachmann"
55
__license__: str = "MIT"
6-
__version__: str = "2.13.3"
6+
__version__: str = "2.13.4"
77

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

0 commit comments

Comments
 (0)