Skip to content

Commit

Permalink
release v2.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann authored Aug 8, 2022
1 parent 6ce2e43 commit b09b76d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## Changelog

### [2.5.0] - 2022-08-

### [2.4.3] - 2022-08-08
#### Fixed
- fix value range of `jaro_similarity`/`jaro_winkler_similarity` in the pure Python mode
for the string_metric module
- fix missing atomix symbol on arm 32 bit

### [2.4.2] - 2022-07-30
#### Fixed
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Max Bachmann'

# The full version, including alpha/beta/rc tags
release = '2.4.2'
release = '2.4.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def show_message(*lines):

setup_args = {
"name": "rapidfuzz",
"version": "2.4.2",
"version": "2.4.3",
"install_requires": ["jarowinkler >= 1.2.0, < 2.0.0"],
"extras_require": {'full': ['numpy']},
"url": "https://github.com/maxbachmann/RapidFuzz",
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,6 +3,6 @@
"""
__author__: str = "Max Bachmann"
__license__: str = "MIT"
__version__: str = "2.4.2"
__version__: str = "2.4.3"

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

0 comments on commit b09b76d

Please sign in to comment.