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
 
-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
 
        *EPS   = *Convert::Color::LUV::EPS;
 }
 
-our $VERSION = '0.002001';
+our $VERSION = '1.000';
 
 __PACKAGE__->register_color_space('husl');
 
 
        *_get_bounds = *Convert::Color::HUSL::_get_bounds; ## no critic (ProtectPrivate)
 }
 
-our $VERSION = '0.002001';
+our $VERSION = '1.000';
 
 __PACKAGE__->register_color_space('huslp');
 
 
 use warnings;
 use parent qw/Convert::Color/;
 
-our $VERSION = '0.002001';
+our $VERSION = '1.000';
 
 use Convert::Color::LUV;
 use Math::Trig ':pi';
 
 
 use Convert::Color::XYZ;
 
-our $VERSION = '0.002001';
+our $VERSION = '1.000';
 
 use constant +{ ## no critic (Capitalization)
        KAPPA => (29/3) ** 3,
 
 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  ],