diff --git a/changelog.txt b/changelog.txt index 6a12eb2da..16707e5e5 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,41 @@ +0.7.2 04/05/2011 +================ + +[aws|cloudformation] + enabling region parameter for AWS cloud formation requests. thanks flessa + +[compute] + [aws] + remove CGI escape from create_security_group. thanks coliver + replace remaining specs with shindo tests + update #keypairs reference to #key_pairs. thanks pvande + Emulate volume unavailability when mocking. thanks mtodd + Raise error on non-existent snapshot for create_volume. thanks mtodd + Add tag to resource data when creating a mock tag. thanks betamatt + Add tag filtering to mocks for snapshots, volumes, instances. thanks betamatt + Add delete_tags mock. thanks betamatt + Support tag-key, tag-value, tag:key filters. thanks betamatt + Correct name of dns-filter filter. thanks betamatt + allow key pair to write into properly chmodded files. thanks gerred + Making key pair names a little less potentially brittle. thanks gerred + [rackspace] + fix public_ip_address accessors + +[core] + updated base parser to not eagerly strip return data. thanks bdorry + don't escape ssh commands. thanks pvande + Deal with missing FOG_RC/HOME env vars better. thanks outerim + fix push parser block passed to excon > 0.6.0 + +[docs] + move fog.io stuff into docs directory + pull in and format data from README, wiki, blog posts + +[storage|rackspace] + head_object should use HEAD. thanks nate + Support for serving Rackspace CDN objects via SSL. thanks minter + Use URI.escape instead of CGI.escape. thanks minter + 0.7.1 03/21/2011 ================ @@ -146,3 +184,4 @@ Bug fixes. [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 + diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index f55bbb8b8..b9493293c 100755 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -33,7 +33,7 @@

{{ page.title }}

-
version
v0.7.1
+
version
v0.7.2
install
gem install fog
source
geemus/fog
diff --git a/fog.gemspec b/fog.gemspec index b91e3b0f2..9e7b2345c 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.7.1' - s.date = '2011-03-21' + s.version = '0.7.2' + s.date = '2011-04-05' 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 ed192a735..9cc5be24f 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.7.1' + VERSION = '0.7.2' end end