File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
+ ## [ 3.3.0] - 2025-01-18
4
+ ### Changed
5
+ - add C++11 and C++14 support
6
+
3
7
## [ 3.2.0] - 2024-12-17
4
8
### Performance
5
9
- 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)
32
32
message (FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR} /CMakeCache.txt" )
33
33
endif ()
34
34
35
- project (rapidfuzz LANGUAGES CXX VERSION 3.2 .0)
35
+ project (rapidfuzz LANGUAGES CXX VERSION 3.3 .0)
36
36
37
37
list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR} /cmake" )
38
38
include (GNUInstallDirs)
Original file line number Diff line number Diff line change 6
6
/* RAPIDFUZZ_LTO_HACK is used to differentiate functions between different
7
7
* translation units to avoid warnings when using lto */
8
8
#ifndef RAPIDFUZZ_EXCLUDE_SIMD
9
- # if 0 // __AVX2__
9
+ # if __AVX2__
10
10
# define RAPIDFUZZ_SIMD
11
11
# define RAPIDFUZZ_AVX2
12
12
# define RAPIDFUZZ_LTO_HACK 0
You can’t perform that action at this time.
0 commit comments