Bump version and update Changes 0.002
authorMarius Gavrilescu <marius@ieval.ro>
Sun, 21 Jun 2015 07:56:01 +0000 (10:56 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sun, 21 Jun 2015 07:56:01 +0000 (10:56 +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 9b1b200f149a361af398313bd7d8f34e93f7d755..3eda24210eff0e2cd300eb1c6c3e9c1732082d98 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,9 @@
 Revision history for Perl extension Convert::Color::HUSL.
 
+0.002 2015-06-21T10:56+03:00
+  - Update to Revision 4 of HUSL
+  - Make tests faster and dist smaller
+  - Drop minimum perl version from 5.14.0 to 5.8.9
+
 0.001 2015-06-14T10:30+03:00
   - Initial release
diff --git a/README b/README
index 41e300b94f23d3cb72687ed3811feadda709b3c6..3aa5f4d1f3bcd027e68dff0184f65c1e60e179ee 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Convert-Color-HUSL version 0.001
+Convert-Color-HUSL version 0.002
 ================================
 
 HUSL is a human-friendly color space designed for perceptual
index 46a888be41ff3459b3b111d3ad355220195baeeb..8f4e60e5cf7aa66f7f4d42daee82ff98ee87ebb3 100644 (file)
@@ -20,7 +20,7 @@ BEGIN {
        *EPS   = *Convert::Color::LUV::EPS;
 }
 
-our $VERSION = '0.001';
+our $VERSION = '0.002';
 
 __PACKAGE__->register_color_space('husl');
 
index f790af63777959c291c8e564f1b00836593c105d..222583bd315e0e7d0da820943e8d348e312e464c 100644 (file)
@@ -15,7 +15,7 @@ BEGIN {
        *_get_bounds = *Convert::Color::HUSL::_get_bounds; ## no critic (ProtectPrivate)
 }
 
-our $VERSION = '0.001';
+our $VERSION = '0.002';
 
 __PACKAGE__->register_color_space('huslp');
 
index f52ee458c3e2a37eed1ada60d0a5cad4b5e1e12f..e12fdc44e98d98b9f5e0400d8306a9a987176ac7 100644 (file)
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use parent qw/Convert::Color/;
 
-our $VERSION = '0.001';
+our $VERSION = '0.002';
 
 use Convert::Color::LUV;
 use Math::Trig ':pi';
index 513dada55dd27023829f86f795c7ad2b3d24f858..bc4d8549392900b5b7a28cb5b5e535b596e758f3 100644 (file)
@@ -7,7 +7,7 @@ use parent qw/Convert::Color/;
 
 use Convert::Color::XYZ;
 
-our $VERSION = '0.001';
+our $VERSION = '0.002';
 
 use constant +{ ## no critic (Capitalization)
        KAPPA => (29/3) ** 3,
index b6b7d187a27cf31ce2750b6ffc398c318180f66f..169c3203b18e7a06094321c9bbc78ef34e910957 100644 (file)
@@ -8,7 +8,7 @@ use parent qw/Convert::Color/;
 use Convert::Color::RGB;
 use List::Util qw/sum/;
 
-our $VERSION = '0.001';
+our $VERSION = '0.002';
 
 use constant +{ ## no critic (Capitalization)
        MAT_R => [  3.2409699419045214,   -1.5373831775700935, -0.49861076029300328  ],
This page took 0.015692 seconds and 4 git commands to generate.