From: Karen Etheridge Date: Mon, 3 Jul 2017 19:31:10 +0000 (-0700) Subject: increment $VERSION after 1.006 release X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Authentication-Store-Htpasswd.git;a=commitdiff_plain;h=84f268d02180c5360a85530e3c06d15dca389775 increment $VERSION after 1.006 release --- diff --git a/Changes b/Changes index ca07fc2..eb11cdd 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Release history for Catalyst-Authentication-Store-Htpasswd +{{$NEXT}} + 1.006 2017-07-03 19:30:35Z - pod formatting fixes (RT#102187, Christopher Hoskin) diff --git a/lib/Catalyst/Authentication/Store/Htpasswd.pm b/lib/Catalyst/Authentication/Store/Htpasswd.pm index 090f6e3..c2c49aa 100644 --- a/lib/Catalyst/Authentication/Store/Htpasswd.pm +++ b/lib/Catalyst/Authentication/Store/Htpasswd.pm @@ -11,7 +11,7 @@ use Authen::Htpasswd 0.13; use Catalyst::Authentication::Store::Htpasswd::User; use Scalar::Util qw/blessed/; -our $VERSION = '1.006'; +our $VERSION = '1.007'; BEGIN { __PACKAGE__->mk_accessors(qw/file user_field user_class/) } diff --git a/lib/Catalyst/Authentication/Store/Htpasswd/User.pm b/lib/Catalyst/Authentication/Store/Htpasswd/User.pm index 05573b1..d83c9c3 100644 --- a/lib/Catalyst/Authentication/Store/Htpasswd/User.pm +++ b/lib/Catalyst/Authentication/Store/Htpasswd/User.pm @@ -8,7 +8,7 @@ use base qw/Catalyst::Authentication::User Class::Accessor::Fast/; use strict; use warnings; -our $VERSION = '1.006'; +our $VERSION = '1.007'; BEGIN { __PACKAGE__->mk_accessors(qw/_user _store/) }