Skip to content

Commit

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

diff --git Changes Changes
index dcda240..a69025e 100644
--- Changes
+++ Changes
@@ -2,6 +2,16 @@ Revision history for Perl module Amon2

 {{$NEXT}}

+6.07 2014-08-01T19:32:01Z
+
+    [Amon2::Util::random_string()]
+    - Use Digest::SHA::sha1_base64() instead of sha1_hex.
+    - Show warnings if the required $length is too short.
+
+    [TESTING FIX]
+    - t/100_core/011_random_string.t was fixed.
+      broken at 6.04.
+
 6.06 2014-08-01T14:10:26Z

     [BUG FIX]
  • Loading branch information
tokuhirom committed Aug 1, 2014
1 parent 6316ac4 commit 8d11bff
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,16 @@ Revision history for Perl module Amon2

{{$NEXT}}

6.07 2014-08-01T19:32:01Z

[Amon2::Util::random_string()]
- Use Digest::SHA::sha1_base64() instead of sha1_hex.
- Show warnings if the required $length is too short.

[TESTING FIX]
- t/100_core/011_random_string.t was fixed.
broken at 6.04.

6.06 2014-08-01T14:10:26Z

[BUG FIX]
Expand Down
2 changes: 1 addition & 1 deletion META.json
Expand Up @@ -137,7 +137,7 @@
"web" : "https://github.com/tokuhirom/Amon"
}
},
"version" : "6.06",
"version" : "6.07",
"x_contributors" : [
"noblejasper <nobjas@gmail.com>",
"noblejasper <jasper@main.noble-jasper.com>",
Expand Down
2 changes: 1 addition & 1 deletion eg/Hello/lib/Hello.pm
Expand Up @@ -2,7 +2,7 @@ package Hello;
use strict;
use warnings;
use parent qw/Amon2/;
our $VERSION='6.06';
our $VERSION='6.07';

use Amon2::Config::Simple;
sub load_config { Amon2::Config::Simple->load(shift) }
Expand Down
2 changes: 1 addition & 1 deletion lib/Amon2.pm
Expand Up @@ -8,7 +8,7 @@ use Carp ();
use Amon2::Config::Simple;
use Amon2::ContextGuard;

our $VERSION = '6.06';
our $VERSION = '6.07';
{
our $CONTEXT; # You can localize this variable in your application.
sub context { $CONTEXT }
Expand Down
2 changes: 1 addition & 1 deletion lib/Amon2/Setup/Flavor/Basic.pm
Expand Up @@ -5,7 +5,7 @@ use utf8;
package Amon2::Setup::Flavor::Basic;
use parent qw(Amon2::Setup::Flavor);

our $VERSION = '6.06';
our $VERSION = '6.07';

sub run {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Amon2/Setup/Flavor/Large.pm
Expand Up @@ -6,7 +6,7 @@ package Amon2::Setup::Flavor::Large;
use parent qw(Amon2::Setup::Flavor);
use File::Path ();

our $VERSION = '6.06';
our $VERSION = '6.07';

sub admin_script {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Amon2/Setup/Flavor/Minimum.pm
Expand Up @@ -4,7 +4,7 @@ use warnings FATAL => 'all';
use utf8;
use parent qw(Amon2::Setup::Flavor);

our $VERSION = '6.06';
our $VERSION = '6.07';

sub run {
my ($self) = @_;
Expand Down

0 comments on commit 8d11bff

Please sign in to comment.