From: Marius Gavrilescu <marius@ieval.ro>
Date: Thu, 9 Jul 2015 12:40:37 +0000 (+0300)
Subject: Bump version and update Changes
X-Git-Tag: 0.002001^0
X-Git-Url: http://git.ieval.ro/?a=commitdiff_plain;h=a9cfbc8975e760a945648a83070383decdefdc36;p=convert-color-husl.git

Bump version and update Changes
---

diff --git a/Changes b/Changes
index 51c3f24..a658f34 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension Convert::Color::HUSL.
 
+0.002001 2015-07-09T15:40+03:00
+ - Fix typo in LUV -> XYZ conversion
+ - Improve tests and make dist smaller
+
 0.002 2015-06-21T10:56+03:00
  - Update to Revision 4 of HUSL
  - Make tests faster and dist smaller
diff --git a/README b/README
index 3aa5f4d..cef43d9 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-Convert-Color-HUSL version 0.002
-================================
+Convert-Color-HUSL version 0.002001
+===================================
 
 HUSL is a human-friendly color space designed for perceptual
 uniformity. HUSLp is a derivative of HUSL that also provides an
diff --git a/lib/Convert/Color/HUSL.pm b/lib/Convert/Color/HUSL.pm
index 8f4e60e..d1f9f55 100644
--- a/lib/Convert/Color/HUSL.pm
+++ b/lib/Convert/Color/HUSL.pm
@@ -20,7 +20,7 @@ BEGIN {
 	*EPS   = *Convert::Color::LUV::EPS;
 }
 
-our $VERSION = '0.002';
+our $VERSION = '0.002001';
 
 __PACKAGE__->register_color_space('husl');
 
diff --git a/lib/Convert/Color/HUSLp.pm b/lib/Convert/Color/HUSLp.pm
index 222583b..a4ec326 100644
--- a/lib/Convert/Color/HUSLp.pm
+++ b/lib/Convert/Color/HUSLp.pm
@@ -15,7 +15,7 @@ BEGIN {
 	*_get_bounds = *Convert::Color::HUSL::_get_bounds; ## no critic (ProtectPrivate)
 }
 
-our $VERSION = '0.002';
+our $VERSION = '0.002001';
 
 __PACKAGE__->register_color_space('huslp');
 
diff --git a/lib/Convert/Color/LCh.pm b/lib/Convert/Color/LCh.pm
index e12fdc4..106098f 100644
--- a/lib/Convert/Color/LCh.pm
+++ b/lib/Convert/Color/LCh.pm
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use parent qw/Convert::Color/;
 
-our $VERSION = '0.002';
+our $VERSION = '0.002001';
 
 use Convert::Color::LUV;
 use Math::Trig ':pi';
diff --git a/lib/Convert/Color/LUV.pm b/lib/Convert/Color/LUV.pm
index 9268444..8e78f06 100644
--- a/lib/Convert/Color/LUV.pm
+++ b/lib/Convert/Color/LUV.pm
@@ -7,7 +7,7 @@ use parent qw/Convert::Color/;
 
 use Convert::Color::XYZ;
 
-our $VERSION = '0.002';
+our $VERSION = '0.002001';
 
 use constant +{ ## no critic (Capitalization)
 	KAPPA => (29/3) ** 3,
diff --git a/lib/Convert/Color/XYZ.pm b/lib/Convert/Color/XYZ.pm
index 169c320..65fa753 100644
--- a/lib/Convert/Color/XYZ.pm
+++ b/lib/Convert/Color/XYZ.pm
@@ -8,7 +8,7 @@ use parent qw/Convert::Color/;
 use Convert::Color::RGB;
 use List::Util qw/sum/;
 
-our $VERSION = '0.002';
+our $VERSION = '0.002001';
 
 use constant +{ ## no critic (Capitalization)
 	MAT_R => [  3.2409699419045214,   -1.5373831775700935, -0.49861076029300328  ],