Skip to content

Releases: agext/levenshtein

v1.2.3

12 Mar 23:37
Compare
Choose a tag to compare

Fix issue #3

v1.2.2

22 Feb 19:13
Compare
Choose a tag to compare

Enable modules; update CI settings

v1.2.1

17 Feb 06:39
Compare
Choose a tag to compare

Minor code cleanup; updated docs and ci settings

v1.2

17 Feb 06:37
Compare
Choose a tag to compare

Improved distance calculation speed when a maximum cost is set.

  • Reduced complexity from O(max(|s1|,|s2|)*maxCost) to O(min(|s1|,|s2|)*maxCost).
  • Bypass the calculation when distance is guaranteed to be greater than maxCost.
  • Added tests for more edge cases.

v1.1

17 Feb 06:35
Compare
Choose a tag to compare

Improved distance calculation speed when a maximum cost is set.

  • Reduced complexity from O(|s1|*|s2|) to O(max(|s1|,|s2|)*maxCost).
  • Ignore maxCost when it would not help shorten the calculation.

v1.0

17 Feb 06:34
Compare
Choose a tag to compare

First stable release