amazon-ec2 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/CHANGELOG +4 -0
  2. data/lib/EC2.rb +1 -1
  3. metadata +3 -3
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.3.2 2008-12-11
2
+ * Updated API version to 2008-12-01
3
+ * Note : The new European EC2 zone should just work if you specify ':server => "eu-west-1.ec2.amazonaws.com"' when initializing EC2::Base.new(). Please report any issues you have with using this new service.
4
+
1
5
  === 0.3.1 2008-09-18
2
6
  * Added basic custom kernel id support to run_instances. Thanks to Keith Hudgins for the patch.
3
7
 
data/lib/EC2.rb CHANGED
@@ -22,7 +22,7 @@ module EC2
22
22
  DEFAULT_HOST = 'ec2.amazonaws.com'
23
23
 
24
24
  # This is the version of the API as defined by Amazon Web Services
25
- API_VERSION = '2008-05-05'
25
+ API_VERSION = '2008-12-01'
26
26
 
27
27
  # Builds the canonical string for signing. This strips out all '&', '?', and '='
28
28
  # from the query string to be signed.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amazon-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Glenn Rempe
@@ -9,7 +9,7 @@ autorequire: EC2
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-09-18 00:00:00 -04:00
12
+ date: 2008-12-11 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
98
  requirements: []
99
99
 
100
100
  rubyforge_project:
101
- rubygems_version: 1.2.0
101
+ rubygems_version: 1.3.1
102
102
  signing_key:
103
103
  specification_version: 2
104
104
  summary: An interface library that allows Ruby applications to easily connect to the HTTP 'Query API' for the Amazon Web Services Elastic Compute Cloud (EC2) and manipulate cloud servers.