From ec0ffc97a89254b6f9efdaf084da24eed22324e1 Mon Sep 17 00:00:00 2001
From: Marius Gavrilescu <marius@ieval.ro>
Date: Sat, 30 Dec 2017 19:31:09 +0200
Subject: [PATCH] Bump version and update Changes

---
 Changes               | 4 ++++
 README                | 2 +-
 lib/Convert/Base91.pm | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

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);
-- 
2.39.5