From: Yuval Kogman Date: Sun, 1 Jan 2006 12:07:56 +0000 (+0000) Subject: Changelog + version bump + prereq fixing for C::P::Auth X-Git-Tag: v0.05^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a5961476f1c57502011250be04fcba816a03b102;p=catagits%2FCatalyst-Plugin-Authentication.git Changelog + version bump + prereq fixing for C::P::Auth --- diff --git a/Build.PL b/Build.PL index 75bedcf..cc7e5dd 100644 --- a/Build.PL +++ b/Build.PL @@ -6,10 +6,10 @@ my $build = Module::Build->new( license => 'perl', module_name => 'Catalyst::Plugin::Authentication', requires => { - 'perl' => '5.8.1', - 'Catalyst' => '5.49', + 'perl' => '5.8.1', + 'Catalyst' => '5.49', + 'Class::Inspector' => 0, }, - recommends => { 'Want' => 0, }, create_readme => 1, sign => 1, ); diff --git a/Changes b/Changes index 54bcfe4..0f7cd6f 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Catalyst::Plugin::Authentication +0.05 2005-01-01 13:58:00 + - Add debugging to Credential::Password + - Important doc fixes + 0.04 - With User::Hash and Store::Minimal together session will store userid, not actual user object diff --git a/lib/Catalyst/Plugin/Authentication.pm b/lib/Catalyst/Plugin/Authentication.pm index 3f80433..ab25422 100644 --- a/lib/Catalyst/Plugin/Authentication.pm +++ b/lib/Catalyst/Plugin/Authentication.pm @@ -22,7 +22,7 @@ use Class::Inspector; # constant->import(have_want => eval { require Want }); #} -our $VERSION = "0.04"; +our $VERSION = "0.05"; sub set_authenticated { my ( $c, $user ) = @_;