Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 1.06.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git Changes Changes
index 3c3c2d9..24da7de 100644
--- Changes
+++ Changes
@@ -2,6 +2,12 @@ Revision history for Perl extension HTTP-Session2

 {{$NEXT}}

+1.06 2014-08-01T14:00:33Z
+
+    [BUG FIX]
+    - Random string generator doesn't works if /dev/urandom is not available.
+      This issue was introduced at 1.02.
+
 1.05 2014-08-01T11:20:13Z

     - Show warnings if the secret string is too short.
  • Loading branch information
tokuhirom committed Aug 1, 2014
1 parent d018c36 commit 212a160
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,12 @@ Revision history for Perl extension HTTP-Session2

{{$NEXT}}

1.06 2014-08-01T14:00:33Z

[BUG FIX]
- Random string generator doesn't works if /dev/urandom is not available.
This issue was introduced at 1.02.

1.05 2014-08-01T11:20:13Z

- Show warnings if the secret string is too short.
Expand Down
2 changes: 1 addition & 1 deletion META.json
Expand Up @@ -76,7 +76,7 @@
"web" : "https://github.com/tokuhirom/HTTP-Session2"
}
},
"version" : "1.05",
"version" : "1.06",
"x_contributors" : [
"magai <xxmagai@gmail.com>"
]
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Session2.pm
Expand Up @@ -3,7 +3,7 @@ use 5.008005;
use strict;
use warnings;

our $VERSION = "1.05";
our $VERSION = "1.06";

1;
__END__
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Session2/ServerStore.pm
Expand Up @@ -4,7 +4,7 @@ use warnings;
use utf8;
use 5.008_001;

our $VERSION = "1.05";
our $VERSION = "1.06";

use Carp ();
use Digest::HMAC;
Expand Down

0 comments on commit 212a160

Please sign in to comment.