1Revision history for Perl module Text::Levenshtein
2
30.14 2021-03-24 NEILB
4    - Added String::KeyboardDistance to SEE ALSO
5    - Added Text::Levenshtein::BV to SEE ALSO
6    - Added Text::Levenshtein::Edlib to SEE ALSO
7    - Added Text::Levenshtein::Flexible to SEE ALSO
8
90.13 2015-08-11 NEILB
10    - Added Text::Dice to SEE ALSO.
11    - Added [MetaJSON] to dist.ini, so META.json will be included in
12      the release tarball.
13
140.12 2014-10-26 NEILB
15    - Require Unicode::Collate 1.04 or higher. Tests on early Perls were
16      failing, most often down to Unicode::Collate 0.52, on Perl 5.8.9.
17
180.11 2014-10-26 NEILB
19    - The first implementation of the ignore_diacritics option was
20      very inefficient. It's now at least an order of magnitude faster,
21      if calling it multiple times.
22
230.10 2014-10-24 NEILB
24
25    - Added { ignore_diacritics => 1 } option, which can be passed as the
26      last argument to the distance() and fastdistance() subs.
27      OALDERS++ for the suggestion in RT#97883.
28
290.09 2014-04-26 NEILB
30
31    - Added Text::Levenshtein::TestUtils in t/lib/ to make it easy to
32      write tests (for different languages).
33    - Added Swedish tests in t/20-swedish.t - thanks to Graham Bowers.
34    - Moved Russian tests (from MMCLERIC) to t/21-russian.t.
35    - Added separate Japanese tests in t/22-japanese.t
36      Thanks to Robert Fraser.
37    - Added Greek tests in t/23-greek.t - thanks to Wikipedia.
38
390.08 2014-04-23 NEILB
40
41    - Copy and pasting text from a web page ended up with a UTF-8 dash,
42      instead of the hyphen character I assumed was there. RT#94962
43    - Added Japanese hiragana test
44    - Added some Russian test cases -- thanks to Vyacheslav Matyukhin
45    - Another test for UTF-8, in Japanese, from Ben Bullock.
46
470.07 2014-04-23 NEILB
48
49    - Completely rewrote module, based on the "iterative with two matrix rows"
50      version on the Wikipedia page. Added three new testsuites.
51    - Use List::Util::min()
52    - Drop the '&' before 'fastdistance' in the doc. RT#42535
53    - Moved module to lib/Text/Levenshtein.pm
54    - Moved test.pl to t/01-original.t and changed it to be a proper testsuite
55    - Removed META.yml so metadata files will be generated
56    - Specified min perl version as 5.6.0
57    - Added a bunch of similar modules to the SEE ALSO section
58    - Added an explicit COPYRIGHT AND LICENSE section in pod
59    - Added github repo to pod (and to the metadata)
60    - Reformatted Changes as per CPAN::Changes::Spec
61
620.06_01 2008-05-14 JGOLDBERG
63
64    - Bugfixes, especially 26134
65
660.05 2004-07-01 JGOLDBERG
67
68    - Rename distfile for consistency
69
700.04: 2004-03-06 JGOLDBERG
71
72    - Added several modifications to increase speed
73    - Added fastdistance routine when array form can be sacrificed
74      for increased speed
75
760.03 2002-07-28 DREE
77
78   - Changed docs to point to Text::WagnerFischer
79     (Thanks to S. Rodighiero and D. Frankowski to point me this)
80   - Better initialization of the matrix
81
820.02 2002-05-29 DREE
83
84   - Added array support
85
860.01 2002-05-20 DREE
87
88   - No changes -- initial release
89
90