Skip to content

Commit

Permalink
tag build
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Jul 2, 2024
1 parent ecb1370 commit 080456a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
Changelog
---------

[3.9.3] - 2024-06-31
[3.9.4] - 2024-07-02
^^^^^^^^^^^^^^^^^^^^
Fixed
~~~~~
* fix bug in ``Levenshtein.editops`` and ``Levenshtein.opcodes`` which could lead
to incorrect results and crashes for some inputs

[3.9.3] - 2024-05-31
^^^^^^^^^^^^^^^^^^^^
Fixed
~~~~~
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ else()
add_library(Taskflow::Taskflow ALIAS Taskflow)
endif()

find_package(rapidfuzz 3.0.4 QUIET)
find_package(rapidfuzz 3.0.5 QUIET)
if(rapidfuzz_FOUND)
message(STATUS "Using system supplied version of rapidfuzz-cpp")
else()
Expand Down
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.9.3",
"version": "3.9.4",
"extras_require": {"full": ["numpy"]},
"url": "https://github.com/rapidfuzz/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 @@ -6,7 +6,7 @@

__author__: str = "Max Bachmann"
__license__: str = "MIT"
__version__: str = "3.9.3"
__version__: str = "3.9.4"

from rapidfuzz import distance, fuzz, process, utils

Expand Down

0 comments on commit 080456a

Please sign in to comment.