diff --git a/Rakefile b/Rakefile index 50fdc7422..8cdf2d2b3 100644 --- a/Rakefile +++ b/Rakefile @@ -230,6 +230,7 @@ task :changelog do 'Aaron Suggs', 'Brian Hartsock', 'Christopher Oliver', + 'Decklin Foster', 'Dylan Egan', 'geemus', 'Henry Addison', diff --git a/changelog.txt b/changelog.txt index 304359454..6223722af 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,35 @@ +1.3.1 03/27/2012 f0f692456956fe2e414ef8205d0268259901644a +========================================================= + +Stats! { 'collaborators' => 32, 'downloads' => 527366, 'forks' => 392, 'open_issues' => 27, 'watchers' => 1901 } + +MVP! George Scott + +[aws|dns] + Preserves change_id. Support for checking sync status via reload. thanks George Scott + Changed #insync? to #ready?. thanks George Scott + +[ibm] + avoid using constants (Rails loads files multiple times, issue #807). thanks Decklin Foster + Make usage of #state rather than #status consistent. thanks Decklin Foster + +[ibm|compute] + Add clone/destroy methods and tests to Image. thanks Decklin Foster + Add request test for list_vlans and fix mock. thanks Decklin Foster + +[ibm|storage] + Restore storage_area, platform_version, clone_status Volume attributes. thanks Decklin Foster + +[misc] + Allow custom headers in Storage#put_object_url. thanks Jacob Mattingley + Use https_url instead of deprecated url for put_object_url. thanks Jacob Mattingley + Adding Vlan class to IBM SmartCloud. thanks Joe Kinsella + bump excon dep to get jruby openssl fixes. thanks geemus + +[storage] + properly update content-type at save time for file models. thanks geemus + + 1.3.0 03/21/2012 f78afe98242a60ae4dbbfcd8c5ab67ba71c6d773 ========================================================= diff --git a/fog.gemspec b/fog.gemspec index c89345ca3..391757b1b 100644 --- a/fog.gemspec +++ b/fog.gemspec @@ -6,8 +6,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 = '1.3.0' - s.date = '2012-03-21' + s.version = '1.3.1' + s.date = '2012-03-27' 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 382d90ba4..49f900e5f 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 = '1.3.0' + VERSION = '1.3.1' end end