From a17d2402f10384cb86b2b33118be1b0c2eb47024 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sat, 23 Apr 2016 18:46:06 +0100 Subject: [PATCH] Bump version and update Changes --- Changes | 3 +++ README | 4 ++-- lib/Convert/Color/HUSL.pm | 2 +- lib/Convert/Color/HUSLp.pm | 2 +- lib/Convert/Color/LCh.pm | 2 +- lib/Convert/Color/LUV.pm | 2 +- lib/Convert/Color/XYZ.pm | 2 +- 7 files changed, 10 insertions(+), 7 deletions(-) diff --git a/Changes b/Changes index a658f34..434e37e 100644 --- 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 cef43d9..faf160f 100644 --- 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 diff --git a/lib/Convert/Color/HUSL.pm b/lib/Convert/Color/HUSL.pm index d1f9f55..9ecd20c 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.002001'; +our $VERSION = '1.000'; __PACKAGE__->register_color_space('husl'); diff --git a/lib/Convert/Color/HUSLp.pm b/lib/Convert/Color/HUSLp.pm index a4ec326..4f9df36 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.002001'; +our $VERSION = '1.000'; __PACKAGE__->register_color_space('huslp'); diff --git a/lib/Convert/Color/LCh.pm b/lib/Convert/Color/LCh.pm index 106098f..45c67aa 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.002001'; +our $VERSION = '1.000'; use Convert::Color::LUV; use Math::Trig ':pi'; diff --git a/lib/Convert/Color/LUV.pm b/lib/Convert/Color/LUV.pm index 8e78f06..af09d79 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.002001'; +our $VERSION = '1.000'; use constant +{ ## no critic (Capitalization) KAPPA => (29/3) ** 3, diff --git a/lib/Convert/Color/XYZ.pm b/lib/Convert/Color/XYZ.pm index 65fa753..87ea7f0 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.002001'; +our $VERSION = '1.000'; use constant +{ ## no critic (Capitalization) MAT_R => [ 3.2409699419045214, -1.5373831775700935, -0.49861076029300328 ], -- 2.30.2