Skip to content

Commit

Permalink
v3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Logan committed Feb 10, 2017
1 parent 5cc31d2 commit 73bdf51
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dll.base
dll.exp
pm_to_blib
MYMETA.*
/Makefile
Makefile$
*.tar
*.gz
MANIFEST$
9 changes: 7 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
Revision history for Perl module Text::Levenshtein::Damerau::XS

3.1 Wed Jan 27 13:48:56
3.2 Fri Feb 10 19:32:50 2017
- Fix leak when length diff is greater than max (reported and fixed by Gregory Oschwald)
- Update CPAN::Meta::Requirements (see: http://ppm4.activestate.com/MSWin32-x86/5.16/1600/U/UG/UGEXE/Text-Levenshtein-Damerau-XS-3.1.d/log-20160129T021639.txt)
- Possibly fix PPM build on build machines using C89 to compile (i.e. 5.16 and older)

3.1 Wed Jan 27 13:48:56 2016
- Better maxDistance short circuiting
- Fix a possible read-past-by-1 loop memory problem pointed out (reported by Karl Williamson)

3.0 Fri Jun 01 22:29:17
3.0 Fri Jun 01 22:29:17 2015
- maxDistance incorrect results patched with non-optimal solution
- some XS API changes to try and pass weird OpenBSD failures

Expand Down
10 changes: 7 additions & 3 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,21 @@ WriteMakefile (
AUTHOR => 'Nick Logan <ugexe@cpan.org>',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.008008',
PREREQ_PM => {
BUILD_REQUIRES => {
'CPAN::Meta::Requirements' => '2.120920',
},
TEST_REQUIRES => {
'Test::More' => '0',
},
META_MERGE => {
resources => {
repository => $repo,
bugtracker => "$bugs",
bugtracker => $bugs,
},
provides => {
'Text::Levenshtein::Damerau::XS' => {
file => 'lib/Text/Levenshtein/Damerau/XS.pm',
version => '3.1',
version => '3.2',
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Levenshtein/Damerau/XS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use 5.008_008;

require Exporter;

$Text::Levenshtein::Damerau::XS::VERSION = '3.1';
$Text::Levenshtein::Damerau::XS::VERSION = '3.2';
@Text::Levenshtein::Damerau::XS::EXPORT_OK = qw/xs_edistance/;
@Text::Levenshtein::Damerau::XS::ISA = qw/Exporter/;

Expand Down

0 comments on commit 73bdf51

Please sign in to comment.