Unreleased - ReleaseDate
2.2.2 - 2022-12-28
- Second correction to
try_levenshtein
internals
2.2.1 - 2022-12-28
- Levenshtein limit functions now follow the limit if short circuited
2.2.0 - 2022-12-15
- Added
try_levenshtein_x
functions to allow returning anOption
if a limit is hit
- (internal) crate structure reorganization
2.1.3 - 2022-08-26
- Simplify algorithms to be more rustastic
- Update Github workflows
2.1.2 - 2022-07-24
- Changed
jaccard_set
to take a reference rather than the a copied value
2.1.1 - 2022-07-21
- Improved documentation coverage
2.1.0 - 2022-07-21
- New function
levenshtein_limit_iter
levenshtein_limit_weight
moved to justlevenshtein_weight
to save redundancy- Significantly improved algorithm for weighted levenshtein calculations
levenshtein_limit_weight_slice
has been removed. Uselevenshtein_weight_iter
instead.
2.0.7 - 2022-07-14
- Fixed musllinux builds to work for 3.7-3.10.
2.0.6 - 2022-07-13
- Updated algorithm used by
levenshtein
andlevenshtein_limit
for significantly improved performance, especially when strings start or end with a large number of similar characters.