From: Tomas Doran Date: Sun, 8 Mar 2009 23:35:19 +0000 (+0000) Subject: Checking in changes prior to tagging of version 0.10011. Changelog diff is: X-Git-Tag: v0.10011^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Ftags%2Fv0.10011;p=catagits%2FCatalyst-Plugin-Authentication.git Checking in changes prior to tagging of version 0.10011. Changelog diff is: Index: Changes =================================================================== --- Changes (revision 9466) +++ Changes (working copy) @@ -1,6 +1,6 @@ Revision history for Perl extension Catalyst::Plugin::Authentication -0.10011 *UNRELEASED* +0.10011 Sun Mar 8 23:32:12 GMT 2009 - Update t/live_app_session.t to skip unless you have a newer, more reliable version of TWMC (RT#43817) - Change check for isa Catalyst::Plugin::Session to just check the --- diff --git a/Changes b/Changes index 9bf25ec..15538f5 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for Perl extension Catalyst::Plugin::Authentication -0.10011 *UNRELEASED* +0.10011 Sun Mar 8 23:32:12 GMT 2009 - Update t/live_app_session.t to skip unless you have a newer, more reliable version of TWMC (RT#43817) - Change check for isa Catalyst::Plugin::Session to just check the diff --git a/lib/Catalyst/Plugin/Authentication.pm b/lib/Catalyst/Plugin/Authentication.pm index 4627b22..0e81f63 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.10010"; +our $VERSION = "0.10011"; sub set_authenticated { my ( $c, $user, $realmname ) = @_; diff --git a/t/live_app_session.t b/t/live_app_session.t index 3f718cf..65793eb 100644 --- a/t/live_app_session.t +++ b/t/live_app_session.t @@ -8,8 +8,6 @@ BEGIN { plan skip_all => "This test needs Test::WWW::Mechanize::Catalyst, Catalyst::Plugin::Session and Catalyst::Plugin::Session::State::Cookie installed" if $@; plan skip_all => "This test needs Test::WWW::Mechanize::Catalyst >= 0.50, you have only $Test::WWW::Mechanize::Catalyst::VERSION" unless $Test::WWW::Mechanize::Catalyst::VERSION >= 0.50; - # There is something fishy going on here. When you run this from make test, - # there are 29 tests, when you run it from prove, there are 26 - WTF FIXME (t0m) plan tests => 29; }