Checking in changes prior to tagging of version 0.14.
Tatsuhiko Miyagawa [Tue, 29 Mar 2011 20:49:07 +0000 (13:49 -0700)]
Changelog diff is:

diff --git a/Changes b/Changes
index c65a04f..00decc7 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Plack::Middleware::Session

+0.14 Tue Mar 29 13:48:42 PDT 2011
+    - Support get_dbh callback in Store::DBI (kazeburo)
+
 0.13 Wed Dec 22 08:56:52 PST 2010
     - Added WARNINGS to deprecate request parameter based session state from the default state
     - Added 'change_id' option for paranoids against session fixation (s-aska, nihen)

Changes
lib/Plack/Middleware/Session.pm
lib/Plack/Session.pm
lib/Plack/Session/State.pm
lib/Plack/Session/State/Cookie.pm
lib/Plack/Session/Store.pm
lib/Plack/Session/Store/Cache.pm
lib/Plack/Session/Store/File.pm
lib/Plack/Session/Store/Null.pm

diff --git a/Changes b/Changes
index c65a04f..00decc7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Plack::Middleware::Session
 
+0.14 Tue Mar 29 13:48:42 PDT 2011
+    - Support get_dbh callback in Store::DBI (kazeburo)
+
 0.13 Wed Dec 22 08:56:52 PST 2010
     - Added WARNINGS to deprecate request parameter based session state from the default state
     - Added 'change_id' option for paranoids against session fixation (s-aska, nihen)
index f6e65e7..a0eb4e2 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Middleware::Session;
 use strict;
 use warnings;
 
-our $VERSION   = '0.13';
+our $VERSION   = '0.14';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Plack::Util;
index 9a8ed98..dff6672 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session;
 use strict;
 use warnings;
 
-our $VERSION   = '0.13';
+our $VERSION   = '0.14';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Plack::Util::Accessor qw( session options );
index e3fdaeb..ed470d1 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::State;
 use strict;
 use warnings;
 
-our $VERSION   = '0.13';
+our $VERSION   = '0.14';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Digest::SHA1 ();
index d6042a4..c7c9bfe 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::State::Cookie;
 use strict;
 use warnings;
 
-our $VERSION   = '0.13';
+our $VERSION   = '0.14';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use parent 'Plack::Session::State';
index 5617904..e356ffe 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::Store;
 use strict;
 use warnings;
 
-our $VERSION   = '0.13';
+our $VERSION   = '0.14';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Plack::Util::Accessor qw[ _stash ];
index 2b66989..75efb16 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::Store::Cache;
 use strict;
 use warnings;
 
-our $VERSION   = '0.13';
+our $VERSION   = '0.14';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Scalar::Util qw[ blessed ];
index aca721f..7a846f9 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::Store::File;
 use strict;
 use warnings;
 
-our $VERSION   = '0.13';
+our $VERSION   = '0.14';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Storable ();
index d6d497d..cfb5df1 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::Store::Null;
 use strict;
 use warnings;
 
-our $VERSION   = '0.13';
+our $VERSION   = '0.14';
 our $AUTHORITY = 'cpan:STEVAN';
 
 sub new     { bless {} => shift }