From: Tatsuhiko Miyagawa Date: Sat, 27 Feb 2010 10:42:03 +0000 (-0800) Subject: Checking in changes prior to tagging of version 0.11. Changelog diff is: X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FWeb-Session.git;a=commitdiff_plain;h=3f7980eee39a3ed424c5163da97c26a42b93dba0 Checking in changes prior to tagging of version 0.11. Changelog diff is: diff --git a/Changes b/Changes index da5ed78..1e3c6bc 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Plack::Middleware::Session +0.11 Sat Feb 27 02:40:29 PST 2010 + - Added Session::Store::DBI by lestrrat + 0.10 Mon Feb 22 19:03:17 PST 2010 - Make this a non-dev release now Plack 0.9910 is out --- diff --git a/Changes b/Changes index da5ed78..1e3c6bc 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Plack::Middleware::Session +0.11 Sat Feb 27 02:40:29 PST 2010 + - Added Session::Store::DBI by lestrrat + 0.10 Mon Feb 22 19:03:17 PST 2010 - Make this a non-dev release now Plack 0.9910 is out diff --git a/lib/Plack/Middleware/Session.pm b/lib/Plack/Middleware/Session.pm index 08a80b6..e5ed2b3 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.10'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use Plack::Util; diff --git a/lib/Plack/Session.pm b/lib/Plack/Session.pm index 949f480..b70a8e7 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.10'; +our $VERSION = '0.11'; 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 309c640..c89d58c 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.10'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use Digest::SHA1 (); diff --git a/lib/Plack/Session/State/Cookie.pm b/lib/Plack/Session/State/Cookie.pm index d19471d..3fa19c3 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.10'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use parent 'Plack::Session::State'; diff --git a/lib/Plack/Session/Store.pm b/lib/Plack/Session/Store.pm index 8f811e6..fe13773 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.10'; +our $VERSION = '0.11'; 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 b504050..29f7364 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.10'; +our $VERSION = '0.11'; 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 b93ca4c..932cc22 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.10'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use Storable (); diff --git a/lib/Plack/Session/Store/Null.pm b/lib/Plack/Session/Store/Null.pm index 5ee1274..f6671e1 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.10'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; sub new { bless {} => shift }