Releases: tdebatty/java-string-similarity
Releases · tdebatty/java-string-similarity
v2.0.0
- implementation of Ratcliff-Obershelp string distance
- bump to Java 8
1.2.1
Re-release, because 1.2.0 messed up and didn't reach maven central...
Early termination
Levenshtein and WeightedLevenshtein now accept a limit parameter, to allow early termination
v1.1.0
WeightedLevenshtein : add possibility to give different weights for characters insertion/removal thanks to PR from ewanmellor
v1.0.1
Make ShingleBased class public (see issue #39 by @wagjo)
v1.0.0
[maven-release-plugin] copy for tag v1.0.0
v0.24
- removed unused sparse vector classes
- slightly improved Jaccard index computation
v0.23
- add QGram.distance(profile1, profile2), to compute distance between precomputed profiles.
v0.22
Handle null and empty strings
v0.21
- Fix issue #27 (ngram distance with String size < n)