Minor release

This commit is contained in:
Steven Bazyl 2013-03-25 21:37:52 -07:00
parent 4dc0665ccc
commit bfafe1b0c8
3 changed files with 9 additions and 2 deletions

View File

@ -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

View File

@ -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"]

View File

@ -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