Releases: taleinat/fuzzysearch
Releases · taleinat/fuzzysearch
v0.7.3
- Fixed segmentation faults due to wrong handling of inputs in bytes-like-only functions in C extensions.
v0.7.2
- Added PyPy support.
- Several minor bug fixes.
v0.7.1
- Dropped support for Python 3.4.
- Removed deprecation warning with Python 3.8.
- Fixed a couple of nasty bugs.
v0.7.0
- Added
matched
attribue to Match
objects containing the matched part
of the sequence.
- Added support for CPython 3.8. Now supporting CPython 2.7 and 3.4-3.8.
v0.6.2
- Fix calling
search_exact()
without passing end_index
.
- Fix edge case: max. dist >= sub-sequence length.
v0.6.1
- Fixed some C compiler warnings for the C and Cython modules
v0.6.0
- Dropped support for Python versions 2.6, 3.2 and 3.3
- Added support and testing for Python 3.7
- Optimized the n-grams Levenshtein search for long sub-sequences
- Further optimized the n-grams Levenshtein search
- Cython versions of the optimized parts of the n-grams Levenshtein search
v0.5.0
- added support for lists and tuples as sequences
find_near_matches
now does input type validation with informative error messages
- fixed, improved and added tests
- updated CI testing settings