Skip to content

Commit

Permalink
Release 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
axiak committed Jul 24, 2023
1 parent 3ac0760 commit 0305be2
Show file tree
Hide file tree
Showing 6 changed files with 1,383 additions and 120 deletions.
6 changes: 0 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
fuzzyset - A fuzzy string set for python.
===========================================

Note
----

This is a maintained fork of the unfortunately no longer maintained `fuzzyset package <https://github.com/axiak/fuzzyset>`_ package by
Mike Axiak. This fork is available on PyPi as `fuzzyset2 <https://pypi.org/project/fuzzyset2>`_.

fuzzyset is a data structure that performs something akin to fulltext search
against data to determine likely misspellings and approximate string matching.

Expand Down
2 changes: 1 addition & 1 deletion fuzzyset/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import collections
import Levenshtein

__version__ = "0.1.1"
__version__ = "0.1.2"
__version_info__ = tuple(__version__.split("."))

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

0 comments on commit 0305be2

Please sign in to comment.