Skip to content

Commit

Permalink
bump VERSION and Changes for CPAN release
Browse files Browse the repository at this point in the history
also remove debug print statement
  • Loading branch information
leejo committed Apr 20, 2018
1 parent 1a4f2ce commit 54a608d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions Changes
@@ -1,6 +1,7 @@

Changelog for perl module AWS::S3

0.15 2018-04-20
- More fixes for ->add_bucket. Fix an error when no location is provided or
us-east-1 is explicitly asked for. Patch by Dave Rolsky. (GH #9)

Expand Down
7 changes: 4 additions & 3 deletions README.markdown
Expand Up @@ -168,9 +168,10 @@ Returns the [AWS::S3::Bucket](https://metacpan.org/pod/AWS::S3::Bucket) object m

Returns nothing otherwise.

## add\_bucket( name => $name )
## add\_bucket( name => $name, location => 'us-west-1' )

Attempts to create a new bucket with the name provided.
Attempts to create a new bucket with the name provided. The location parameter is optional
and, as per the AWS docs, will default to "us-east-1".

On success, returns the new [AWS::S3::Bucket](https://metacpan.org/pod/AWS::S3::Bucket)

Expand All @@ -193,7 +194,7 @@ See [AWS::S3::Bucket](https://metacpan.org/pod/AWS::S3::Bucket) for details on h
# AUTHOR

Originally John Drago `jdrago_999@yahoo.com`, currently maintained by Lee Johnson (LEEJO) `leejo@cpan.org`
with contributions from Evan Carroll, Robin Clarke, Ulrich Kautz, simbabque
with contributions from Evan Carroll, Robin Clarke, Ulrich Kautz, simbabque, Dave Rolsky

# LICENSE

Expand Down
4 changes: 2 additions & 2 deletions lib/AWS/S3.pm
Expand Up @@ -13,7 +13,7 @@ use AWS::S3::ResponseParser;
use AWS::S3::Owner;
use AWS::S3::Bucket;

our $VERSION = '0.14';
our $VERSION = '0.15';

has [qw/access_key_id secret_access_key/] => ( is => 'ro', isa => 'Str' );

Expand Down Expand Up @@ -301,7 +301,7 @@ L<AWS::S3::Owner>
=head1 AUTHOR
Originally John Drago C<jdrago_999@yahoo.com>, currently maintained by Lee Johnson (LEEJO) C<leejo@cpan.org>
with contributions from Evan Carroll, Robin Clarke, Ulrich Kautz, simbabque
with contributions from Evan Carroll, Robin Clarke, Ulrich Kautz, simbabque, Dave Rolsky
=head1 LICENSE
Expand Down
2 changes: 0 additions & 2 deletions lib/AWS/S3/Request/CreateBucket.pm
Expand Up @@ -34,8 +34,6 @@ sub request {
XML
}

print $xml;

my $signer = AWS::S3::Signer->new(
s3 => $s->s3,
method => 'PUT',
Expand Down

0 comments on commit 54a608d

Please sign in to comment.