diff --git a/Gemfile.lock b/Gemfile.lock index 36207ed81..88f55d07c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - fog (0.5.3) + fog (0.6.0) builder excon (>= 0.5.5) formatador (>= 0.0.16) diff --git a/changelog.txt b/changelog.txt index 286bb738c..9d2f07b40 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 \ No newline at end of file +[terremark|ecloud] getting started on ecloud specific implementation diff --git a/fog.gemspec b/fog.gemspec index d5f2433c3..960fb32ed 100644 --- a/fog.gemspec +++ b/fog.gemspec @@ -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 diff --git a/lib/fog.rb b/lib/fog.rb index 234e1d8c2..a498914f7 100644 --- a/lib/fog.rb +++ b/lib/fog.rb @@ -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