File tree Expand file tree Collapse file tree 3 files changed +17
-11
lines changed
Expand file tree Collapse file tree 3 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -5,25 +5,29 @@ Changelog
55^^^^^^^^^^^^^^^^^^^^^
66Changed
77~~~~~~~~~~~
8- - generate code for fallback imports to be better parseable for tools bundling Python
8+ * generate code for fallback imports to be better parseable for tools bundling Python
99 applications into a single binary (examples are cx-freeze and pyinstaller)
1010
11+ Added
12+ ~~~~~
13+ * added support for taskflow 3.9.0
14+
1115[3.11.0] - 2024-12-17
1216^^^^^^^^^^^^^^^^^^^^^
1317Performance
1418~~~~~~~~~~~
15- - improve calculation of min score inside partial_ratio so it can skip more alignments
19+ * improve calculation of min score inside partial_ratio so it can skip more alignments
1620
1721Added
1822~~~~~
19- - added build support for emscripten
23+ * added build support for emscripten
2024
2125[3.10.1] - 2024-10-24
2226^^^^^^^^^^^^^^^^^^^^^
2327Fixed
2428~~~~~
25- - fix compilation on clang-19
26- - fix incorrect results in simd optimized implementation of Levenshtein and OSA on 32bit targets
29+ * fix compilation on clang-19
30+ * fix incorrect results in simd optimized implementation of Levenshtein and OSA on 32bit targets
2731
2832Added
2933~~~~~
3337^^^^^^^^^^^^^^^^^^^^^
3438Fixed
3539~~~~~
36- - drop support for Python 3.8
37- - switch build system to ``scikit-build-core ``
40+ * drop support for Python 3.8
41+ * switch build system to ``scikit-build-core ``
3842
3943[3.9.7] - 2024-09-02
4044^^^^^^^^^^^^^^^^^^^^
@@ -105,8 +109,8 @@ Added
105109
106110Fixed
107111~~~~~
108- - fix some minor errors in the type hints
109- - fix potentially incorrect results of JaroWinkler when using high prefix weights
112+ * fix some minor errors in the type hints
113+ * fix potentially incorrect results of JaroWinkler when using high prefix weights
110114
111115[3.7.0] - 2024-03-21
112116^^^^^^^^^^^^^^^^^^^^
Original file line number Diff line number Diff line change @@ -82,7 +82,9 @@ check_cpu_arch_x86(RAPIDFUZZ_ARCH_X86)
8282
8383set (RF_BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR} /src)
8484
85- find_package (Taskflow 3.8.0 QUIET )
85+ find_package (Taskflow 3.9.0 QUIET )
86+ if (NOT Taskflow_FOUND)
87+ find_package (Taskflow 3.8.0 QUIET )
8688if (NOT Taskflow_FOUND)
8789 find_package (Taskflow 3.7.0 QUIET )
8890endif ()
You can’t perform that action at this time.
0 commit comments