Skip to content

Commit

Permalink
Bump version: 0.2.3 → 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
alpae committed May 23, 2024
1 parent 4804c57 commit 62be5d8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.3
current_version = 0.2.4
commit = True
tag = False

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changelog

### [0.2.4] - 2024-05-23
- fixed inconsistency between cfuzzyset and fuzzyset implementation (#30)
- update ciwheelbuild to 2.18.1
- bump version of actions to latest versions

### [0.2.3] - 2024-03-05
- add support to build wheels for py3.12 (macosx, win, linux)
- drop support for py3.7 (EOL)
Expand Down
2 changes: 1 addition & 1 deletion fuzzyset/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import operator
import collections
from rapidfuzz.distance import Levenshtein
__version__ = "0.2.3"
__version__ = "0.2.4"
__version_info__ = tuple(__version__.split("."))

_non_word_re = re.compile(r'[^\w, ]+')
Expand Down

0 comments on commit 62be5d8

Please sign in to comment.