File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11## Changelog
22
3+ ## [ 3.3.0] - 2025-01-18
4+ ### Changed
5+ - add C++11 and C++14 support
6+
37## [ 3.2.0] - 2024-12-17
48### Performance
59- improve calculation of min score inside partial_ratio so it can skip more alignments
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
3232 message (FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR} /CMakeCache.txt" )
3333endif ()
3434
35- project (rapidfuzz LANGUAGES CXX VERSION 3.2 .0)
35+ project (rapidfuzz LANGUAGES CXX VERSION 3.3 .0)
3636
3737list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR} /cmake" )
3838include (GNUInstallDirs)
Original file line number Diff line number Diff line change 66/* RAPIDFUZZ_LTO_HACK is used to differentiate functions between different
77 * translation units to avoid warnings when using lto */
88#ifndef RAPIDFUZZ_EXCLUDE_SIMD
9- # if 0 // __AVX2__
9+ # if __AVX2__
1010# define RAPIDFUZZ_SIMD
1111# define RAPIDFUZZ_AVX2
1212# define RAPIDFUZZ_LTO_HACK 0
You can’t perform that action at this time.
0 commit comments