Changelog + version bump + prereq fixing for C::P::Auth v0.05
Yuval Kogman [Sun, 1 Jan 2006 12:07:56 +0000 (12:07 +0000)]
Build.PL
Changes
lib/Catalyst/Plugin/Authentication.pm

index 75bedcf..cc7e5dd 100644 (file)
--- 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 (file)
--- 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
index 3f80433..ab25422 100644 (file)
@@ -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 ) = @_;