Skip to content

Commit

Permalink
tag release
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Dec 17, 2024
1 parent bead365 commit dbfb7ce
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
---------

[3.11.0] - 2024-12-17
^^^^^^^^^^^^^^^^^^^^^
Performance
~~~~~~~~~~~
- improve calculation of min score inside partial_ratio so it can skip more alignments

Added
~~~~~
- added build support for emscripten

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

find_package(rapidfuzz 3.1.1 QUIET)
find_package(rapidfuzz 3.2.0 QUIET)
if(rapidfuzz_FOUND)
message(STATUS "Using system supplied version of rapidfuzz-cpp")
else()
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.10.1"
__version__: str = "3.11.0"

from rapidfuzz import distance, fuzz, process, utils

Expand Down

0 comments on commit dbfb7ce

Please sign in to comment.