Skip to content

Commit

Permalink
release 0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann authored Sep 26, 2023
1 parent bb33a8f commit de2b1d5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Changelog

### v0.22.0
#### Changed
- add support for Python 3.12
- drop support for Python 3.6

#### Added
- add wheels for windows arm64

### v0.21.1
#### Changed
- upgrade ``rapidfuzz-cpp`` to ``v2.0.0``
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ computation of:
The `python-Levenshtein` package will continue to be updated alongside the new package

## Requirements
* Python 3.6 or later
* Python 3.7 or later

## Installation
```bash
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = python-Levenshtein
version = 0.21.1
version = 0.22.0
description = Python extension for computing string edit distances and similarities.
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -10,16 +10,16 @@ url = https://github.com/maxbachmann/python-Levenshtein
license = GPL-2.0-or-later
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
keywords = string, Levenshtein, comparison, edit-distance

[options]
python_requires = >=3.6
python_requires = >=3.7
install_requires =
Levenshtein==0.21.1
Levenshtein==0.22.0

0 comments on commit de2b1d5

Please sign in to comment.