Skip to content

Commit

Permalink
fix edge case in simd implementation of Jaro/JaroWinkler
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Oct 9, 2023
1 parent c40fe92 commit 6269c13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
---------

[3.4.0] - 2023-10-08
[3.4.0] - 2023-10-09
^^^^^^^^^^^^^^^^^^^^
Changed
~~~~~~~
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 @@ -15,7 +15,7 @@ def show_message(*lines):

setup_args = {
"name": "rapidfuzz",
"version": "3.3.1",
"version": "3.4.0",
"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 @@ -5,7 +5,7 @@

__author__: str = "Max Bachmann"
__license__: str = "MIT"
__version__: str = "3.3.1"
__version__: str = "3.4.0"

from rapidfuzz import distance, fuzz, process, utils

Expand Down

0 comments on commit 6269c13

Please sign in to comment.