Minor release
This commit is contained in:
parent
4dc0665ccc
commit
bfafe1b0c8
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue