release v2.3.0
This commit is contained in:
parent
12422be681
commit
2ce46ef1c8
|
@ -1,6 +1,6 @@
|
|||
## Changelog
|
||||
|
||||
### [2.3.0] - 2022-07-
|
||||
### [2.3.0] - 2022-07-23
|
||||
#### Added
|
||||
- add `as_matching_blocks` to `Editops`/`Opcodes`
|
||||
- add support for deletions from `Editops`
|
||||
|
|
|
@ -37,7 +37,7 @@ else()
|
|||
add_library(Taskflow::Taskflow ALIAS Taskflow)
|
||||
endif()
|
||||
|
||||
find_package(rapidfuzz 1.0.4 QUIET)
|
||||
find_package(rapidfuzz 1.0.5 QUIET)
|
||||
if (rapidfuzz_FOUND)
|
||||
message("Using system supplied version of rapidfuzz-cpp")
|
||||
else()
|
||||
|
|
|
@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann'
|
|||
author = 'Max Bachmann'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '2.2.0'
|
||||
release = '2.3.0'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit a05cb6e761b838adad7e4ddc9d57cb1d5dd62103
|
||||
Subproject commit 1303f3de46ca3d8de7e8e327f1f48e0859573318
|
2
setup.py
2
setup.py
|
@ -11,7 +11,7 @@ with open('README.md', 'rt', encoding="utf8") as f:
|
|||
|
||||
setup_args = {
|
||||
"name": "rapidfuzz",
|
||||
"version": "2.2.0",
|
||||
"version": "2.3.0",
|
||||
"install_requires": ["jarowinkler >= 1.2.0, < 2.0.0"],
|
||||
"extras_require": {'full': ['numpy']},
|
||||
"url": "https://github.com/maxbachmann/RapidFuzz",
|
||||
|
|
|
@ -3,6 +3,6 @@ rapid string matching library
|
|||
"""
|
||||
__author__: str = "Max Bachmann"
|
||||
__license__: str = "MIT"
|
||||
__version__: str = "2.2.0"
|
||||
__version__: str = "2.3.0"
|
||||
|
||||
from rapidfuzz import process, distance, fuzz, string_metric, utils
|
||||
|
|
Loading…
Reference in New Issue