release v2.4.1

This commit is contained in:
Max Bachmann 2022-07-29 21:13:30 +02:00
parent bbb898475f
commit 93b0124d7a
6 changed files with 9 additions and 5 deletions

View File

@ -1,5 +1,9 @@
## Changelog
### [2.4.1] - 2022-07-29
#### Fixed
- fix version number
### [2.4.0] - 2022-07-29
#### Fixed
- fix banded Levenshtein implementation

View File

@ -37,7 +37,7 @@ else()
add_library(Taskflow::Taskflow ALIAS Taskflow)
endif()
find_package(rapidfuzz 1.1.0 QUIET)
find_package(rapidfuzz 1.1.1 QUIET)
if (rapidfuzz_FOUND)
message("Using system supplied version of rapidfuzz-cpp")
else()

View File

@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann'
author = 'Max Bachmann'
# The full version, including alpha/beta/rc tags
release = '2.3.0'
release = '2.4.1'
# -- General configuration ---------------------------------------------------

@ -1 +1 @@
Subproject commit 2278c3d7371b26bf14bddbcc97c8945fe1c8f971
Subproject commit d937555ad76a6f1ed853ab4b7102a7b22b6f0fcf

View File

@ -11,7 +11,7 @@ with open('README.md', 'rt', encoding="utf8") as f:
setup_args = {
"name": "rapidfuzz",
"version": "2.3.0",
"version": "2.4.1",
"install_requires": ["jarowinkler >= 1.2.0, < 2.0.0"],
"extras_require": {'full': ['numpy']},
"url": "https://github.com/maxbachmann/RapidFuzz",

View File

@ -3,6 +3,6 @@ rapid string matching library
"""
__author__: str = "Max Bachmann"
__license__: str = "MIT"
__version__: str = "2.3.0"
__version__: str = "2.4.1"
from rapidfuzz import process, distance, fuzz, string_metric, utils