Skip to content

Commit 3b6fac0

Browse files
committed
release 2.13.0
1 parent 7e8cc4c commit 3b6fac0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Changelog
22

3-
### [2.13.0] - 2022-
3+
### [2.13.0] - 2022-10-30
44
#### Fixed
55
- fix bug in `Levenshtein.editops` leading to crashes when used with `score_hint`
66

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ else()
7373
add_library(Taskflow::Taskflow ALIAS Taskflow)
7474
endif()
7575

76-
find_package(rapidfuzz 1.9.0 QUIET)
76+
find_package(rapidfuzz 1.10.0 QUIET)
7777
if(rapidfuzz_FOUND)
7878
message(STATUS "Using system supplied version of rapidfuzz-cpp")
7979
else()

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = "Max Bachmann"
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = "2.12.0"
25+
release = "2.13.0"
2626

2727

2828
# -- General configuration ---------------------------------------------------

extern/rapidfuzz-cpp

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def show_message(*lines):
1313

1414
setup_args = {
1515
"name": "rapidfuzz",
16-
"version": "2.12.0",
16+
"version": "2.13.0",
1717
"extras_require": {"full": ["numpy"]},
1818
"url": "https://github.com/maxbachmann/RapidFuzz",
1919
"author": "Max Bachmann",

src/rapidfuzz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
__author__: str = "Max Bachmann"
55
__license__: str = "MIT"
6-
__version__: str = "2.12.0"
6+
__version__: str = "2.13.0"
77

88
from rapidfuzz import distance, fuzz, process, string_metric, utils
99

0 commit comments

Comments
 (0)