Bump version and update Changes master 1.000
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 23 Apr 2016 17:46:06 +0000 (18:46 +0100)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 23 Apr 2016 17:46:06 +0000 (18:46 +0100)
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 a658f34fb6f1bc51c82bdbfa366cfd432d0bb2f5..434e37e7c7241a7d98119ac943ebf8ca52532126 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Convert::Color::HUSL.
 
+1.000 2016-04-23T18:46+01:00
+ - First stable release, no changes from 0.002001
+
 0.002001 2015-07-09T15:40+03:00
  - Fix typo in LUV -> XYZ conversion
  - Improve tests and make dist smaller
diff --git a/README b/README
index cef43d902781d8a343748277a932fa9d7d1a5f9a..faf160f1dcd94d9a52adcade6d4ac56d3959a1ac 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-Convert-Color-HUSL version 0.002001
-===================================
+Convert-Color-HUSL version 1.000
+================================
 
 HUSL is a human-friendly color space designed for perceptual
 uniformity. HUSLp is a derivative of HUSL that also provides an
index d1f9f55a65ac9c53899d2a65ac18ef294e27b120..9ecd20c26a68ea69ddddfdf792ec891577bc7bcd 100644 (file)
@@ -20,7 +20,7 @@ BEGIN {
        *EPS   = *Convert::Color::LUV::EPS;
 }
 
-our $VERSION = '0.002001';
+our $VERSION = '1.000';
 
 __PACKAGE__->register_color_space('husl');
 
index a4ec326746cbc28ba266475e5e48c7da19599d84..4f9df360e3d6903a83641199d430b6e18e1234a1 100644 (file)
@@ -15,7 +15,7 @@ BEGIN {
        *_get_bounds = *Convert::Color::HUSL::_get_bounds; ## no critic (ProtectPrivate)
 }
 
-our $VERSION = '0.002001';
+our $VERSION = '1.000';
 
 __PACKAGE__->register_color_space('huslp');
 
index 106098f226e1a9737aea1b395546d32d8fb0d290..45c67aa7dfda2f34dcbc6fb924e4e89dddd7988c 100644 (file)
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use parent qw/Convert::Color/;
 
-our $VERSION = '0.002001';
+our $VERSION = '1.000';
 
 use Convert::Color::LUV;
 use Math::Trig ':pi';
index 8e78f0602090dd82e32e370631507e7c7d78540c..af09d7977d5e167dde17612841c5532c8ae791c3 100644 (file)
@@ -7,7 +7,7 @@ use parent qw/Convert::Color/;
 
 use Convert::Color::XYZ;
 
-our $VERSION = '0.002001';
+our $VERSION = '1.000';
 
 use constant +{ ## no critic (Capitalization)
        KAPPA => (29/3) ** 3,
index 65fa75387dfc2d8c6824bb2c4bc3f6d0cf425aab..87ea7f0d1166ed2b19a43d9e9e9849ebf6460ac3 100644 (file)
@@ -8,7 +8,7 @@ use parent qw/Convert::Color/;
 use Convert::Color::RGB;
 use List::Util qw/sum/;
 
-our $VERSION = '0.002001';
+our $VERSION = '1.000';
 
 use constant +{ ## no critic (Capitalization)
        MAT_R => [  3.2409699419045214,   -1.5373831775700935, -0.49861076029300328  ],
This page took 0.014745 seconds and 4 git commands to generate.