Release 0.6.0

This commit is contained in:
geemus 2011-02-28 11:15:12 -08:00
parent b87b97f43a
commit 71df6497ff
4 changed files with 42 additions and 5 deletions

View File

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

View File

@ -1,3 +1,37 @@
0.6.0 02/28/2011
================
[aws|compute] fix method signature for security group requests. Thanks crazed
[aws|iam]
fleshing out support. Thanks bdorry and coliver
fix get_group parser to set Arn on group/member as appropriate
[bluebox|dns] added support. Thanks ggoodale
[compute]
add basic scp support. Thanks crazed
consolidate ip accessors
[core]
added changelog, covering 0.5+
reset credentials when changing key or path. Thanks ctennis
[dnsimple|dns] added support. Thanks dje
[ecloud|compute] cleaned up and reworked as basis for future ecloud work
[aws|storage] add static website configuration methods
[local|storage] rewrite using nested directories (NOTE: not backwards compatible)
[rackspace|storage] disable cdn when deleting container
[voxel|compute] added support. Thanks splaspood
remove long standing deprecations
0.5.3 02/15/11
==============
@ -10,6 +44,7 @@ fix _dump for collections/models
require json for to_json of collection/model
add some missing parens to fix warnings
0.5.2 02/11/11
==============
@ -27,6 +62,7 @@ add some missing parens to fix warnings
[README] add contributing section, recommendations for blue shirts, move providers to fog.io, cleanup resources
implicitly add not_implemented mocks
0.5.1 01/31/11
==============
@ -35,6 +71,7 @@ Bug fixes.
[gogrid|compute] added support for password api calls. thanks lum
[fog|time] add date header formatting that is non-localized
0.5.0 01/27/11
==============
@ -48,4 +85,4 @@ Bug fixes.
[gogrid|compute] fix several issues. Thanks cardmagic
[rackspace|compute] get new auth token when one expires
[rackspace|storage] remove nil query params in requests
[terremark|ecloud] getting started on ecloud specific implementation
[terremark|ecloud] getting started on ecloud specific implementation

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.5.3'
s.date = '2011-02-15'
s.version = '0.6.0'
s.date = '2011-02-28'
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.5.3'
VERSION = '0.6.0'
end
end