Unreleased - ReleaseDate
2.2.2 - 2022-12-28
- Second correction to
try_levenshteininternals
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_xfunctions to allow returning anOptionif 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_setto 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_weightmoved to justlevenshtein_weightto save redundancy- Significantly improved algorithm for weighted levenshtein calculations
levenshtein_limit_weight_slicehas been removed. Uselevenshtein_weight_iterinstead.
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
levenshteinandlevenshtein_limitfor significantly improved performance, especially when strings start or end with a large number of similar characters.