pre-0.02 commit
Stevan Little [Sat, 19 Dec 2009 19:21:25 +0000 (14:21 -0500)]
Changes
README
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
t/012_streaming.t [moved from t/011_streaming.t with 100% similarity]

diff --git a/Changes b/Changes
index 14f4935..81877c5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,9 @@
 Revision history for Perl extension Plack::Middleware::Session
 
+0.02 Sat. Dec. 19, 2009
+    - fixed dependency list (RT #52891) (Thanks to Andreas Koenig)
+    - fixed some POD misspellings (Thanks to franckcuny)
+    - fixed streaming interface (Thanks to clkao and miyagawa)
+
 0.01 Tues. Dec. 15, 2009
     - Hello CPAN World!
\ No newline at end of file
diff --git a/README b/README
index d348ac1..8d31758 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Plack::Middleware::Session version 0.01
+Plack::Middleware::Session version 0.02
 ===========================
 
 See the individual module documentation for more information
@@ -18,7 +18,7 @@ This module requires these other modules and libraries:
 
     Plack
     Plack::Request
-    Digest::SHA
+    Digest::SHA1
 
 COPYRIGHT AND LICENCE
 
index b378243..6a8e891 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Middleware::Session;
 use strict;
 use warnings;
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Plack::Session;
index dcae3c3..63258e9 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session;
 use strict;
 use warnings;
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Plack::Util::Accessor qw[
index 9f204af..ecf5a71 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::State;
 use strict;
 use warnings;
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Digest::SHA1 ();
index f4692f5..85c5908 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::State::Cookie;
 use strict;
 use warnings;
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use parent 'Plack::Session::State';
index 38fc4d9..0f87ce6 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::Store;
 use strict;
 use warnings;
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Plack::Util::Accessor qw[ _stash ];
index 2fc5a39..77f2c41 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::Store::Cache;
 use strict;
 use warnings;
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Scalar::Util qw[ blessed ];
index d746cda..0d13ddf 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::Store::File;
 use strict;
 use warnings;
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Storable ();
index e8c3bfa..493143f 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::Store::Null;
 use strict;
 use warnings;
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 sub new     { bless {} => shift }
similarity index 100%
rename from t/011_streaming.t
rename to t/012_streaming.t