From: Marius Gavrilescu Date: Sat, 11 Mar 2017 22:37:01 +0000 (+0200) Subject: Bump version and update Changes X-Git-Tag: 0.001001^0 X-Git-Url: http://git.ieval.ro/?p=text-levenshtein-edlib.git;a=commitdiff_plain;h=c4b849c0e87514c114d31045e580fa591d7d0b7a Bump version and update Changes --- diff --git a/Changes b/Changes index 28f6aec..55eacc0 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Perl extension Text::Levenshtein::Edlib. -0.001 Tue Feb 28 18:19:22 2017 - - original version; created by h2xs 1.23 with options - -v 0.001 -b 5.14.0 -n Text::Levenshtein::Edlib edlib/edlib/include/edlib.h +0.001001 2017-03-12T00:37+02:00 + - Export CIGAR conversion routine + - Minor documentation improvements +0.001 2017-02-28T23:53+00:00 + - Initial release diff --git a/README b/README index 4b4488b..41d3953 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -Text-Levenshtein-Edlib version 0.001 -==================================== +Text-Levenshtein-Edlib version 0.001001 +======================================= Text::Levenshtein::Edlib is a wrapper around the edlib library that computes Levenshtein edit distance and optimal alignment path for a diff --git a/lib/Text/Levenshtein/Edlib.pm b/lib/Text/Levenshtein/Edlib.pm index 8dd4146..1c21ddf 100644 --- a/lib/Text/Levenshtein/Edlib.pm +++ b/lib/Text/Levenshtein/Edlib.pm @@ -27,7 +27,7 @@ our %EXPORT_TAGS = (all => [ @constants, qw/align distance to_cigar/ ], constants => \@constants); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = ( @{ $EXPORT_TAGS{'constants'} } ); -our $VERSION = '0.001'; +our $VERSION = '0.001001'; require XSLoader; XSLoader::load('Text::Levenshtein::Edlib', $VERSION);