From: Marius Gavrilescu Date: Sat, 30 Dec 2017 17:31:09 +0000 (+0200) Subject: Bump version and update Changes X-Git-Tag: 0.001002^0 X-Git-Url: http://git.ieval.ro/?p=convert-base91.git;a=commitdiff_plain;h=ec0ffc97a89254b6f9efdaf084da24eed22324e1 Bump version and update Changes --- diff --git a/Changes b/Changes index f9d2593..f489356 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Convert::Base91. +0.001002 2017-12-30T19:31+03:00 + - Attempt to fix compilation on case-insensitive filesystems + - Write a few extra tests + 0.001001 2017-12-22T19:21+03:00 - Fix compilation on perls with -Dusemultiplicity - Write README diff --git a/README b/README index ba5a5bd..6f034b3 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Convert-Base91 version 0.001001 +Convert-Base91 version 0.001002 =============================== Base91 is a method for encoding binary data as printable ASCII diff --git a/lib/Convert/Base91.pm b/lib/Convert/Base91.pm index 2acfc05..733cf5c 100644 --- a/lib/Convert/Base91.pm +++ b/lib/Convert/Base91.pm @@ -8,7 +8,7 @@ use parent qw/Exporter/; our @EXPORT_OK = qw/encode_base91 decode_base91/; our @EXPORT = (); -our $VERSION = '0.001001'; +our $VERSION = '0.001002'; require XSLoader; XSLoader::load('Convert::Base91', $VERSION);