From c0c474b193be02e13291939efb784654cbc1f479 Mon Sep 17 00:00:00 2001 From: geemus Date: Mon, 21 Mar 2011 14:11:05 -0700 Subject: [PATCH] Release 0.7.1 --- changelog.txt | 11 +++++++++++ fog.gemspec | 4 ++-- lib/fog.rb | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/changelog.txt b/changelog.txt index 726db8268..6a12eb2da 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,14 @@ +0.7.1 03/21/2011 +================ + +[aws|storage] normalize headers. thanks pweldon + +[mock] fix reset_data to not be called in Mock#initialize + +[rackspace] add support for using servicenet. thanks minter + +[storage] provide for non file/string files. thanks pweldon + 0.7.0 03/14/2011 ================ diff --git a/fog.gemspec b/fog.gemspec index 16b5f4deb..398be9d5a 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.0' - s.date = '2011-03-18' + s.version = '0.7.1' + s.date = '2011-03-21' 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 d4fe21414..ed192a735 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.0' + VERSION = '0.7.1' end end