Skip to content

Commit dbfb7ce

Browse files
committed
tag release
1 parent bead365 commit dbfb7ce

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Changelog
22
---------
33

4+
[3.11.0] - 2024-12-17
5+
^^^^^^^^^^^^^^^^^^^^^
6+
Performance
7+
~~~~~~~~~~~
8+
- improve calculation of min score inside partial_ratio so it can skip more alignments
9+
10+
Added
11+
~~~~~
12+
- added build support for emscripten
13+
414
[3.10.1] - 2024-10-24
515
^^^^^^^^^^^^^^^^^^^^^
616
Fixed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ else()
115115
add_library(Taskflow::Taskflow ALIAS Taskflow)
116116
endif()
117117

118-
find_package(rapidfuzz 3.1.1 QUIET)
118+
find_package(rapidfuzz 3.2.0 QUIET)
119119
if(rapidfuzz_FOUND)
120120
message(STATUS "Using system supplied version of rapidfuzz-cpp")
121121
else()

src/rapidfuzz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
__author__: str = "Max Bachmann"
88
__license__: str = "MIT"
9-
__version__: str = "3.10.1"
9+
__version__: str = "3.11.0"
1010

1111
from rapidfuzz import distance, fuzz, process, utils
1212

0 commit comments

Comments
 (0)