mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Release 1.3.1
This commit is contained in:
parent
f0f6924569
commit
4cc36ef51c
4 changed files with 36 additions and 3 deletions
1
Rakefile
1
Rakefile
|
@ -230,6 +230,7 @@ task :changelog do
|
||||||
'Aaron Suggs',
|
'Aaron Suggs',
|
||||||
'Brian Hartsock',
|
'Brian Hartsock',
|
||||||
'Christopher Oliver',
|
'Christopher Oliver',
|
||||||
|
'Decklin Foster',
|
||||||
'Dylan Egan',
|
'Dylan Egan',
|
||||||
'geemus',
|
'geemus',
|
||||||
'Henry Addison',
|
'Henry Addison',
|
||||||
|
|
|
@ -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
|
1.3.0 03/21/2012 f78afe98242a60ae4dbbfcd8c5ab67ba71c6d773
|
||||||
=========================================================
|
=========================================================
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@ Gem::Specification.new do |s|
|
||||||
## If your rubyforge_project name is different, then edit it and comment out
|
## If your rubyforge_project name is different, then edit it and comment out
|
||||||
## the sub! line in the Rakefile
|
## the sub! line in the Rakefile
|
||||||
s.name = 'fog'
|
s.name = 'fog'
|
||||||
s.version = '1.3.0'
|
s.version = '1.3.1'
|
||||||
s.date = '2012-03-21'
|
s.date = '2012-03-27'
|
||||||
s.rubyforge_project = 'fog'
|
s.rubyforge_project = 'fog'
|
||||||
|
|
||||||
## Make sure your summary is short. The description may be as long
|
## Make sure your summary is short. The description may be as long
|
||||||
|
|
|
@ -3,7 +3,7 @@ require File.join(File.dirname(__FILE__), 'fog', 'core')
|
||||||
module Fog
|
module Fog
|
||||||
|
|
||||||
unless const_defined?(:VERSION)
|
unless const_defined?(:VERSION)
|
||||||
VERSION = '1.3.0'
|
VERSION = '1.3.1'
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue