Bump version and update Changes 0.002001
authorMarius Gavrilescu <marius@ieval.ro>
Thu, 9 Jul 2015 12:40:37 +0000 (15:40 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Thu, 9 Jul 2015 12:40:37 +0000 (15:40 +0300)
Changes
README
lib/Convert/Color/HUSL.pm
lib/Convert/Color/HUSLp.pm
lib/Convert/Color/LCh.pm
lib/Convert/Color/LUV.pm
lib/Convert/Color/XYZ.pm

diff --git a/Changes b/Changes
index 51c3f241adb7a247e9c32d4cd18d245f58c2ed27..a658f34fb6f1bc51c82bdbfa366cfd432d0bb2f5 100644 (file)
--- 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 3aa5f4d1f3bcd027e68dff0184f65c1e60e179ee..cef43d902781d8a343748277a932fa9d7d1a5f9a 100644 (file)
--- 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
index 8f4e60e5cf7aa66f7f4d42daee82ff98ee87ebb3..d1f9f55a65ac9c53899d2a65ac18ef294e27b120 100644 (file)
@@ -20,7 +20,7 @@ BEGIN {
        *EPS   = *Convert::Color::LUV::EPS;
 }
 
-our $VERSION = '0.002';
+our $VERSION = '0.002001';
 
 __PACKAGE__->register_color_space('husl');
 
index 222583bd315e0e7d0da820943e8d348e312e464c..a4ec326746cbc28ba266475e5e48c7da19599d84 100644 (file)
@@ -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');
 
index e12fdc44e98d98b9f5e0400d8306a9a987176ac7..106098f226e1a9737aea1b395546d32d8fb0d290 100644 (file)
@@ -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';
index 926844432e0899b746d8ea6255e127ffe38977c5..8e78f0602090dd82e32e370631507e7c7d78540c 100644 (file)
@@ -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,
index 169c3203b18e7a06094321c9bbc78ef34e910957..65fa75387dfc2d8c6824bb2c4bc3f6d0cf425aab 100644 (file)
@@ -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  ],
This page took 0.015282 seconds and 4 git commands to generate.