Skip to content

Commit

Permalink
release 2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Oct 2, 2022
1 parent d63cdc8 commit 0ffae8f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
@@ -1,19 +1,19 @@
## Changelog

### [2.11.0] - 2022-
### [2.11.0] - 2022-10-02
#### Changes
- move jarowinkler dependency into rapidfuzz to simplify maintenance

#### Performance
- add SIMD implementation for `fuzz.ratio`/`fuzz.QRatio`/`Levenshtein`/`Indel`/`LCSseq` to improve
- add SIMD implementation for `fuzz.ratio`/`fuzz.QRatio`/`Levenshtein`/`Indel`/`LCSseq`/`OSA` to improve
performance for short strings in cdist

### [2.10.3] - 2022-08-30
### [2.10.3] - 2022-09-30
#### Fixed
- use `scikit-build=0.14.1` on Linux, since `scikit-build=0.15.0` fails to find the Python Interpreter
- workaround gcc in bug in template type deduction

### [2.10.2] - 2022-08-27
### [2.10.2] - 2022-09-27
#### Fixed
- fix support for cmake versions below 3.17

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -73,7 +73,7 @@ else()
add_library(Taskflow::Taskflow ALIAS Taskflow)
endif()

find_package(rapidfuzz 1.7.0 QUIET)
find_package(rapidfuzz 1.8.0 QUIET)
if(rapidfuzz_FOUND)
message(STATUS "Using system supplied version of rapidfuzz-cpp")
else()
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -22,7 +22,7 @@
author = "Max Bachmann"

# The full version, including alpha/beta/rc tags
release = "2.10.3"
release = "2.11.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion extern/rapidfuzz-cpp
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -13,7 +13,7 @@ def show_message(*lines):

setup_args = {
"name": "rapidfuzz",
"version": "2.10.3",
"version": "2.11.0",
"extras_require": {"full": ["numpy"]},
"url": "https://github.com/maxbachmann/RapidFuzz",
"author": "Max Bachmann",
Expand Down
2 changes: 1 addition & 1 deletion src/rapidfuzz/__init__.py
Expand Up @@ -3,6 +3,6 @@
"""
__author__: str = "Max Bachmann"
__license__: str = "MIT"
__version__: str = "2.10.3"
__version__: str = "2.11.0"

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

0 comments on commit 0ffae8f

Please sign in to comment.