diff --git a/CHANGELOG.md b/CHANGELOG.md index efb58593a..e53283c6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.6.3 + +* Update autoparse to 0.3.3 to fix cases where results aren't correctly parsed. +* Fix railtie loading for compatibility with rails < 3.0 +* Fix refresh of access token when passing credentials as parameter to execute +* Fix URI processing in batch requests to allow query parameters + # 0.6.2 * Update signet to 0.4.6 to support server side continuation of postmessage diff --git a/google-api-client.gemspec b/google-api-client.gemspec index 54453911b..601b3e7fe 100644 --- a/google-api-client.gemspec +++ b/google-api-client.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = "google-api-client" - s.version = "0.6.2" + s.version = "0.6.3" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Bob Aman", "Steve Bazyl"] diff --git a/lib/google/api_client/version.rb b/lib/google/api_client/version.rb index 24a0bd668..1f94b1da2 100644 --- a/lib/google/api_client/version.rb +++ b/lib/google/api_client/version.rb @@ -22,7 +22,7 @@ if !defined?(::Google::APIClient::VERSION) module VERSION MAJOR = 0 MINOR = 6 - TINY = 2 + TINY = 3 STRING = [MAJOR, MINOR, TINY].join('.') end end