r50915 - in /trunk/libnet-amazon-ec2-perl: debian/changelog lib/Net/Amazon/EC2.pm lib/Net/Amazon/EC2/Snapshot.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Jan 14 19:07:28 UTC 2010


Author: jawnsy-guest
Date: Thu Jan 14 19:07:09 2010
New Revision: 50915

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=50915
Log:
* New upstream release
  + 'progress' now a Maybe[Str] instead of a Str

Modified:
    trunk/libnet-amazon-ec2-perl/debian/changelog
    trunk/libnet-amazon-ec2-perl/lib/Net/Amazon/EC2.pm
    trunk/libnet-amazon-ec2-perl/lib/Net/Amazon/EC2/Snapshot.pm

Modified: trunk/libnet-amazon-ec2-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-ec2-perl/debian/changelog?rev=50915&op=diff
==============================================================================
--- trunk/libnet-amazon-ec2-perl/debian/changelog (original)
+++ trunk/libnet-amazon-ec2-perl/debian/changelog Thu Jan 14 19:07:09 2010
@@ -1,3 +1,10 @@
+libnet-amazon-ec2-perl (0.13-1) UNRELEASED; urgency=low
+
+  * New upstream release
+    + 'progress' now a Maybe[Str] instead of a Str
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Thu, 14 Jan 2010 13:58:45 -0500
+
 libnet-amazon-ec2-perl (0.12-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libnet-amazon-ec2-perl/lib/Net/Amazon/EC2.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-ec2-perl/lib/Net/Amazon/EC2.pm?rev=50915&op=diff
==============================================================================
--- trunk/libnet-amazon-ec2-perl/lib/Net/Amazon/EC2.pm (original)
+++ trunk/libnet-amazon-ec2-perl/lib/Net/Amazon/EC2.pm Thu Jan 14 19:07:09 2010
@@ -57,7 +57,7 @@
 use Net::Amazon::EC2::EbsInstanceBlockDeviceMapping;
 use Net::Amazon::EC2::EbsBlockDevice;
 
-$VERSION = '0.12';
+$VERSION = '0.13';
 
 =head1 NAME
 
@@ -66,8 +66,8 @@
 
 =head1 VERSION
 
-This document describes version 0.12 of Net::Amazon::EC2, released
-January 7th, 2010. This module is coded against the Query API version of the '2009-11-30' 
+This document describes version 0.13 of Net::Amazon::EC2, released
+January 13th, 2010. This module is coded against the Query API version of the '2009-11-30' 
 version of the EC2 API last updated December 8th, 2009.
 
 =head1 SYNOPSIS
@@ -3834,14 +3834,14 @@
 
 Set AWS_ACCESS_KEY_ID and SECRET_ACCESS_KEY environment variables to run the live tests.  
 Note: because the live tests start an instance (and kill it) in both the tests and backwards compat tests there will be 2 hours of 
-machine instance usage charges (since there are 2 instances started) which as of January 7th, 2010 costs a total of $0.17 USD
+machine instance usage charges (since there are 2 instances started) which as of January 13th, 2010 costs a total of $0.17 USD
 
 Important note about the windows-only methods.  These have not been well tested as I do not run windows-based instances, so exercise
 caution in using these.
 
 =head1 TODO
 
-Need to add in support for Spot Instances (in the next release).
+Need to add in support for Spot Instances.
 
 =head1 AUTHOR
 

Modified: trunk/libnet-amazon-ec2-perl/lib/Net/Amazon/EC2/Snapshot.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-ec2-perl/lib/Net/Amazon/EC2/Snapshot.pm?rev=50915&op=diff
==============================================================================
--- trunk/libnet-amazon-ec2-perl/lib/Net/Amazon/EC2/Snapshot.pm (original)
+++ trunk/libnet-amazon-ec2-perl/lib/Net/Amazon/EC2/Snapshot.pm Thu Jan 14 19:07:09 2010
@@ -57,7 +57,7 @@
 has 'status'		=> ( is => 'ro', isa => 'Str', required => 1 );
 has 'volume_id'		=> ( is => 'ro', isa => 'Str', required => 1 );
 has 'start_time'	=> ( is => 'ro', isa => 'Str', required => 1 );
-has 'progress'		=> ( is => 'ro', isa => 'Str', required => 1 );
+has 'progress'		=> ( is => 'ro', isa => 'Maybe[Str]', required => 0 );
 has 'owner_id'		=> ( is => 'ro', isa => 'Str', required => 1 );
 has 'volume_size'	=> ( is => 'ro', isa => 'Str', required => 1 );
 has 'description'	=> ( is => 'ro', isa => 'Maybe[Str]', required => 0 );




More information about the Pkg-perl-cvs-commits mailing list