Skip to content

Commit

Permalink
Fixed more 'Passing a list of values to enum is deprecated' errors an…
Browse files Browse the repository at this point in the history
…d made version come from Net/Amazon/S3.pm
  • Loading branch information
robin13 committed Apr 1, 2015
1 parent 2153da8 commit b757bc8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Revision history for Perl module Net::Amazon::S3:
0.60 2015-04-01 Moose enum fixes

0.60 Sun May 11 23:41:12 BST 2014

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ my %WriteMakefileArgs = (
"Test::More" => 0,
"vars" => 0
},
"VERSION" => "0.60",
"VERSION_FROM" => 'lib/Net/Amazon/S3.pm',
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Amazon/S3.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Net::Amazon::S3;
{
$Net::Amazon::S3::VERSION = '0.60';
$Net::Amazon::S3::VERSION = '0.61';
}
use Moose 0.85;
use MooseX::StrictConstructor 0.16;
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Amazon/S3/Client/Object.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ enum 'AclShort' =>
[ qw(private public-read public-read-write authenticated-read) ];

enum 'StorageClass' =>
qw(standard reduced_redundancy);
[ qw(standard reduced_redundancy) ];

has 'client' =>
( is => 'ro', isa => 'Net::Amazon::S3::Client', required => 1 );
Expand Down

0 comments on commit b757bc8

Please sign in to comment.