From: Tatsuhiko Miyagawa Date: Tue, 23 Feb 2010 03:15:23 +0000 (-0800) Subject: Checking in changes prior to tagging of version 0.10. Changelog diff is: X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FWeb-Session.git;a=commitdiff_plain;h=69c28b0edc65fe07b3a7d4180b66d6b0bfd1b204 Checking in changes prior to tagging of version 0.10. Changelog diff is: diff --git a/Changes b/Changes index 692a13c..da5ed78 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Plack::Middleware::Session +0.10 Mon Feb 22 19:03:17 PST 2010 + - Make this a non-dev release now Plack 0.9910 is out + 0.09_03 Tue Feb 2 20:42:56 PST 2010 - Fixed so the default Cookie path is now correctly set to '/' You can override that by setting path = undef in psgix.session.options. --- diff --git a/Changes b/Changes index 692a13c..da5ed78 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Plack::Middleware::Session +0.10 Mon Feb 22 19:03:17 PST 2010 + - Make this a non-dev release now Plack 0.9910 is out + 0.09_03 Tue Feb 2 20:42:56 PST 2010 - Fixed so the default Cookie path is now correctly set to '/' You can override that by setting path = undef in psgix.session.options. diff --git a/Makefile.PL b/Makefile.PL index 29ab832..1d8561e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,8 +7,7 @@ all_from 'lib/Plack/Middleware/Session.pm'; license 'perl'; # prereqs -requires 'Plack' => '0.99_01'; -requires 'Plack::Request' => '0.09'; +requires 'Plack' => '0.9910'; # for session ID gen requires 'Digest::SHA1' => '0'; diff --git a/lib/Plack/Middleware/Session.pm b/lib/Plack/Middleware/Session.pm index bd92f55..08a80b6 100644 --- a/lib/Plack/Middleware/Session.pm +++ b/lib/Plack/Middleware/Session.pm @@ -2,7 +2,7 @@ package Plack::Middleware::Session; use strict; use warnings; -our $VERSION = '0.09_03'; +our $VERSION = '0.10'; our $AUTHORITY = 'cpan:STEVAN'; use Plack::Util; diff --git a/lib/Plack/Session.pm b/lib/Plack/Session.pm index b403ac1..949f480 100644 --- a/lib/Plack/Session.pm +++ b/lib/Plack/Session.pm @@ -2,7 +2,7 @@ package Plack::Session; use strict; use warnings; -our $VERSION = '0.09_03'; +our $VERSION = '0.10'; our $AUTHORITY = 'cpan:STEVAN'; use Plack::Util::Accessor qw( session options ); diff --git a/lib/Plack/Session/State.pm b/lib/Plack/Session/State.pm index 7bdbec5..309c640 100644 --- a/lib/Plack/Session/State.pm +++ b/lib/Plack/Session/State.pm @@ -2,7 +2,7 @@ package Plack::Session::State; use strict; use warnings; -our $VERSION = '0.09_03'; +our $VERSION = '0.10'; our $AUTHORITY = 'cpan:STEVAN'; use Digest::SHA1 (); diff --git a/lib/Plack/Session/State/Cookie.pm b/lib/Plack/Session/State/Cookie.pm index aaa94de..d19471d 100644 --- a/lib/Plack/Session/State/Cookie.pm +++ b/lib/Plack/Session/State/Cookie.pm @@ -2,7 +2,7 @@ package Plack::Session::State::Cookie; use strict; use warnings; -our $VERSION = '0.09_03'; +our $VERSION = '0.10'; our $AUTHORITY = 'cpan:STEVAN'; use parent 'Plack::Session::State'; diff --git a/lib/Plack/Session/Store.pm b/lib/Plack/Session/Store.pm index 5193d74..8f811e6 100644 --- a/lib/Plack/Session/Store.pm +++ b/lib/Plack/Session/Store.pm @@ -2,7 +2,7 @@ package Plack::Session::Store; use strict; use warnings; -our $VERSION = '0.09_03'; +our $VERSION = '0.10'; our $AUTHORITY = 'cpan:STEVAN'; use Plack::Util::Accessor qw[ _stash ]; diff --git a/lib/Plack/Session/Store/Cache.pm b/lib/Plack/Session/Store/Cache.pm index bdcf9b0..b504050 100644 --- a/lib/Plack/Session/Store/Cache.pm +++ b/lib/Plack/Session/Store/Cache.pm @@ -2,7 +2,7 @@ package Plack::Session::Store::Cache; use strict; use warnings; -our $VERSION = '0.09_03'; +our $VERSION = '0.10'; our $AUTHORITY = 'cpan:STEVAN'; use Scalar::Util qw[ blessed ]; diff --git a/lib/Plack/Session/Store/File.pm b/lib/Plack/Session/Store/File.pm index 2b7a660..b93ca4c 100644 --- a/lib/Plack/Session/Store/File.pm +++ b/lib/Plack/Session/Store/File.pm @@ -2,7 +2,7 @@ package Plack::Session::Store::File; use strict; use warnings; -our $VERSION = '0.09_03'; +our $VERSION = '0.10'; our $AUTHORITY = 'cpan:STEVAN'; use Storable (); diff --git a/lib/Plack/Session/Store/Null.pm b/lib/Plack/Session/Store/Null.pm index 5e46fed..5ee1274 100644 --- a/lib/Plack/Session/Store/Null.pm +++ b/lib/Plack/Session/Store/Null.pm @@ -2,7 +2,7 @@ package Plack::Session::Store::Null; use strict; use warnings; -our $VERSION = '0.09_03'; +our $VERSION = '0.10'; our $AUTHORITY = 'cpan:STEVAN'; sub new { bless {} => shift }