From: Marius Gavrilescu Date: Sun, 21 Jun 2015 07:56:01 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 0.002^0 X-Git-Url: http://git.ieval.ro/?p=convert-color-hsluv.git;a=commitdiff_plain;h=6bf4f934c8fb4150c09a13ea6d4147ce579c25df Bump version and update Changes --- diff --git a/Changes b/Changes index 9b1b200..3eda242 100644 --- 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 41e300b..3aa5f4d 100644 --- 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 diff --git a/lib/Convert/Color/HUSL.pm b/lib/Convert/Color/HUSL.pm index 46a888b..8f4e60e 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.001'; +our $VERSION = '0.002'; __PACKAGE__->register_color_space('husl'); diff --git a/lib/Convert/Color/HUSLp.pm b/lib/Convert/Color/HUSLp.pm index f790af6..222583b 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.001'; +our $VERSION = '0.002'; __PACKAGE__->register_color_space('huslp'); diff --git a/lib/Convert/Color/LCh.pm b/lib/Convert/Color/LCh.pm index f52ee45..e12fdc4 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.001'; +our $VERSION = '0.002'; use Convert::Color::LUV; use Math::Trig ':pi'; diff --git a/lib/Convert/Color/LUV.pm b/lib/Convert/Color/LUV.pm index 513dada..bc4d854 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.001'; +our $VERSION = '0.002'; use constant +{ ## no critic (Capitalization) KAPPA => (29/3) ** 3, diff --git a/lib/Convert/Color/XYZ.pm b/lib/Convert/Color/XYZ.pm index b6b7d18..169c320 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.001'; +our $VERSION = '0.002'; use constant +{ ## no critic (Capitalization) MAT_R => [ 3.2409699419045214, -1.5373831775700935, -0.49861076029300328 ],