diff --git a/HISTORY.md b/HISTORY.md index e479c42..7e7b3db 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,10 @@ ## Changelog +### v0.20.8 +#### Fixed +- type hints for `editops`/`opcoded`/`matching_blocks` did not allow any + hashable sequence + ### v0.20.7 #### Fixed - type hints did not get installed diff --git a/docs/conf.py b/docs/conf.py index b5233c5..bdbc2f0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Max Bachmann' # The full version, including alpha/beta/rc tags -release = '0.20.7' +release = '0.20.8' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 85493a8..e53ffe7 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="Levenshtein", - version="0.20.7", + version="0.20.8", url="https://github.com/maxbachmann/Levenshtein", author="Max Bachmann", install_requires=["rapidfuzz >= 2.3.0, < 3.0.0"], diff --git a/src/Levenshtein/__init__.py b/src/Levenshtein/__init__.py index 891333a..561a371 100644 --- a/src/Levenshtein/__init__.py +++ b/src/Levenshtein/__init__.py @@ -16,7 +16,7 @@ __author__: str = "Max Bachmann" __license__: str = "GPL" -__version__: str = "0.20.7" +__version__: str = "0.20.8" import rapidfuzz.distance.Levenshtein as _Levenshtein import rapidfuzz.distance.Indel as _Indel