Skip to content

Commit 6642000

Browse files
committed
Release v1.0.1
1 parent 9d633fe commit 6642000

4 files changed

Lines changed: 15 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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")
2121
endif()
2222

23-
project(rapidfuzz LANGUAGES CXX VERSION 1.0.0)
23+
project(rapidfuzz LANGUAGES CXX VERSION 1.0.1)
2424

2525
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
2626
include(GNUInstallDirs)

extras/rapidfuzz_amalgamated.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.

tools/amalgamation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import sys
88

99
root_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

1212
starting_header = os.path.join(root_path, 'rapidfuzz', 'rapidfuzz_all.hpp')
1313
output_header = os.path.join(root_path, 'extras', 'rapidfuzz_amalgamated.hpp')

0 commit comments

Comments
 (0)