Skip to content

Commit d2538c7

Browse files
committed
0.24
1 parent ddaa5ad commit d2538c7

File tree

11 files changed

+17
-11
lines changed

11 files changed

+17
-11
lines changed

Build.PL

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# This Build.PL for Plack-Middleware-Session was generated by Dist::Zilla::Plugin::ModuleBuildTiny 0.006.
1+
# This Build.PL for Plack-Middleware-Session was generated by Dist::Zilla::Plugin::ModuleBuildTiny 0.007.
2+
use strict;
3+
use warnings;
4+
25
use 5.006;
36
use Module::Build::Tiny 0.037;
47
Build_PL();

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ Revision history for Perl extension Plack::Middleware::Session
22

33
{{$NEXT}}
44

5+
0.24 2014-09-05 04:47:55 PDT
6+
- same as 0.23. not dev release
7+
58
0.23 2014-08-11 10:22:40 PDT
69
- Changed the warning to error, when secret is not set.
710

META.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
}
5353
}
5454
},
55-
"release_status" : "testing",
55+
"release_status" : "stable",
5656
"resources" : {
5757
"bugtracker" : {
5858
"web" : "https://github.com/stevan/plack-middleware-session/issues"
@@ -64,7 +64,7 @@
6464
"web" : "https://github.com/stevan/plack-middleware-session"
6565
}
6666
},
67-
"version" : "0.23",
67+
"version" : "0.24",
6868
"x_contributors" : [
6969
"Graham Knop <[email protected]>",
7070
"Lee Aylward <[email protected]>",

lib/Plack/Middleware/Session.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Middleware::Session;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.23';
5+
our $VERSION = '0.24';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Plack::Util;

lib/Plack/Session.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.23';
5+
our $VERSION = '0.24';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Plack::Util::Accessor qw( session options );

lib/Plack/Session/State.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::State;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.23';
5+
our $VERSION = '0.24';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Digest::SHA1 ();

lib/Plack/Session/State/Cookie.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::State::Cookie;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.23';
5+
our $VERSION = '0.24';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use parent 'Plack::Session::State';

lib/Plack/Session/Store.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::Store;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.23';
5+
our $VERSION = '0.24';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Plack::Util::Accessor qw[ _stash ];

lib/Plack/Session/Store/Cache.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::Store::Cache;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.23';
5+
our $VERSION = '0.24';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Scalar::Util qw[ blessed ];

lib/Plack/Session/Store/File.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::Store::File;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.23';
5+
our $VERSION = '0.24';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Storable ();

lib/Plack/Session/Store/Null.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::Store::Null;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.23';
5+
our $VERSION = '0.24';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
sub new { bless {} => shift }

0 commit comments

Comments
 (0)