Release 0.7.0

This commit is contained in:
geemus 2011-03-18 08:49:06 -06:00
parent 6edd53f510
commit af7f0dfe82
4 changed files with 53 additions and 4 deletions

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
fog (0.6.0)
fog (0.7.0)
builder
excon (>= 0.5.5)
formatador (>= 0.1.1)

View File

@ -1,3 +1,52 @@
0.7.0 03/14/2011
================
[aws] added ap-northeast-1 (tokyo) region options
[aws|cloudformation] add basic support. thanks crazed
[aws|elb] add support for configuring https
[aws|iam]
add support for server certificates. thanks bensie
add support for login profiles. thanks fcheung
[aws|rds]
support basic rds operations. thanks fcheung
add support for restoring servers and security groups. thanks ktheory
[cdn|rackspace] use post_container to update
[compute]
[aws]
fix tag.destroy. thanks eabbott
allow deleting all tags (instead of just specific ones)
fix revoke_security_group method signature
FLAVORS is now a constant
allow for modifying server monitoring. thanks gilles
[brightbox] thanks tokengeek
Added listener management (add/remove) requests for Load Balancers
Added new Server console activation request
Added activate_console method to Brightbox servers
Set Server#private_ip_address to be the first interface
[rackspace] 'official' workaround for awful caching
[virtualbox] rough proof of concept/initial implementation
[core]
fix behavior of slice on collections. thanks eabbott
fix reset_data to be instance method on mock connection (and work)
[credentials]
handle undefined ENV['HOME']
Allow string keys in credentials file [issue 179]. thanks ryanlower
[dns|dnsimple] fix misc bugs in models. thanks ijonas
[storage]
use shared parse_data across providers
[rackspace]
pass through explicit content-type
fix bug preventing file uploads to be streamed
0.6.0 02/28/2011
================

View File

@ -7,8 +7,8 @@ Gem::Specification.new do |s|
## If your rubyforge_project name is different, then edit it and comment out
## the sub! line in the Rakefile
s.name = 'fog'
s.version = '0.6.0'
s.date = '2011-02-28'
s.version = '0.7.0'
s.date = '2011-03-18'
s.rubyforge_project = 'fog'
## Make sure your summary is short. The description may be as long

View File

@ -3,7 +3,7 @@ require File.join(File.dirname(__FILE__), 'fog', 'core')
module Fog
unless const_defined?(:VERSION)
VERSION = '0.6.0'
VERSION = '0.7.0'
end
end