From: Karen Etheridge Date: Fri, 23 Jun 2017 18:04:58 +0000 (-0700) Subject: increment $VERSION after 1.005 release X-Git-Tag: v1.006~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Authentication-Store-Htpasswd.git;a=commitdiff_plain;h=a44689b3a17fecea111528ff797c299aa5cd9dad increment $VERSION after 1.005 release --- diff --git a/Changes b/Changes index c75cf85..2d95a97 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Release history for Catalyst-Authentication-Store-Htpasswd +{{$NEXT}} + 1.005 2017-06-23 18:04:28Z - modernized the tooling, for 5.26 compatibility and to remove pod, kwalitee tests from the user-facing test suite diff --git a/lib/Catalyst/Authentication/Store/Htpasswd.pm b/lib/Catalyst/Authentication/Store/Htpasswd.pm index b07f522..8fa2568 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.005'; +our $VERSION = '1.006'; 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 96655bc..60a8feb 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.005'; +our $VERSION = '1.006'; BEGIN { __PACKAGE__->mk_accessors(qw/_user _store/) }