diff --git a/HISTORY.md b/HISTORY.md index c423c8d..c696b91 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ ## Changelog +### v0.19.3 +#### Added +- add musllinux wheels + ### v0.19.2 #### Added - add missing type hints diff --git a/docs/conf.py b/docs/conf.py index 47fbf4a..b3b210a 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.19.2' +release = '0.19.3' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 5ee3d01..aa3d89d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="Levenshtein", - version="0.19.2", + version="0.19.3", url="https://github.com/maxbachmann/Levenshtein", author="Max Bachmann", install_requires=["rapidfuzz >= 2.0.1, < 3.0.0"], diff --git a/src/Levenshtein/__init__.py b/src/Levenshtein/__init__.py index c34bef5..9c42d2e 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.19.2" +__version__: str = "0.19.3" from rapidfuzz.distance.Levenshtein import distance from rapidfuzz.distance.Indel import normalized_similarity as ratio