File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## Changelog
2+
3+ ### [ 1.0.1] - 2022-04-16
4+ #### Added
5+ - added LCSseq (longest common subsequence) implementation
6+
7+ #### Fixed
8+ - reduced compiler warnings
9+ - consider float imprecision in score_cutoff
10+ - fix incorrect score_cutoff handling in token_set_ratio and token_ratio
11+ - fix template deduction guides on MSVC
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
2020 message (FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR} /CMakeCache.txt" )
2121endif ()
2222
23- project (rapidfuzz LANGUAGES CXX VERSION 1.0.0 )
23+ project (rapidfuzz LANGUAGES CXX VERSION 1.0.1 )
2424
2525list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR} /cmake" )
2626include (GNUInstallDirs )
Original file line number Diff line number Diff line change 11// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
22// SPDX-License-Identifier: MIT
3- // RapidFuzz v1.0.0
4- // Generated: 2022-04-15 01:07:45.627252
3+ // RapidFuzz v1.0.1
4+ // Generated: 2022-04-16 11:54:44.019332
55// ----------------------------------------------------------
66// This file is an amalgamation of multiple different files.
77// You probably shouldn't edit it directly.
Original file line number Diff line number Diff line change 77import sys
88
99root_path = os .path .dirname (os .path .realpath ( os .path .dirname (sys .argv [0 ])))
10- version_string = "1.0.0 "
10+ version_string = "1.0.1 "
1111
1212starting_header = os .path .join (root_path , 'rapidfuzz' , 'rapidfuzz_all.hpp' )
1313output_header = os .path .join (root_path , 'extras' , 'rapidfuzz_amalgamated.hpp' )
You can’t perform that action at this time.
0 commit comments