From: Tomas Doran Date: Wed, 1 Jul 2009 16:42:46 +0000 (+0000) Subject: Checking in changes prior to tagging of version 0.10014. Changelog diff is: X-Git-Tag: v0.10014~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Authentication.git;a=commitdiff_plain;h=4a027ee028e3bde2c5aae59deab11bae25f94940 Checking in changes prior to tagging of version 0.10014. Changelog diff is: Index: Changes =================================================================== --- Changes (revision 10727) +++ Changes (working copy) @@ -1,5 +1,6 @@ Revision history for Perl extension Catalyst::Plugin::Authentication +0.10014 Wed Jul 1 17:40:38 BST 2009 - Make auth_realms method ensure authentication is initialized before calling methods which get created during auth initialization. Fixes back compat cases where auth store is in the plugin list --- diff --git a/.shipit b/.shipit new file mode 100644 index 0000000..aeb2bb3 --- /dev/null +++ b/.shipit @@ -0,0 +1,7 @@ +# auto-generated shipit config file. +steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist + +svn.tagpattern = http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Plugin-Authentication/0.10000/tags/%v + +CheckChangeLog.files = Changes + diff --git a/Changes b/Changes index 6550ecc..874f40f 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ Revision history for Perl extension Catalyst::Plugin::Authentication +0.10014 Wed Jul 1 17:40:38 BST 2009 - Make auth_realms method ensure authentication is initialized before calling methods which get created during auth initialization. Fixes back compat cases where auth store is in the plugin list diff --git a/lib/Catalyst/Plugin/Authentication.pm b/lib/Catalyst/Plugin/Authentication.pm index 91ac80b..8f84222 100644 --- a/lib/Catalyst/Plugin/Authentication.pm +++ b/lib/Catalyst/Plugin/Authentication.pm @@ -12,7 +12,7 @@ use Tie::RefHash; use Class::Inspector; use Catalyst::Authentication::Realm; -our $VERSION = "0.10013"; +our $VERSION = "0.10014"; sub set_authenticated { my ( $c, $user, $realmname ) = @_;