Minor release to fix service account impersonation
This commit is contained in:
parent
47bdbc124e
commit
f369139b32
|
@ -1,3 +1,7 @@
|
||||||
|
# 0.6.1
|
||||||
|
|
||||||
|
* Fix impersonation with service accounts
|
||||||
|
|
||||||
# 0.6
|
# 0.6
|
||||||
|
|
||||||
* Apps strongly encouraged to set :application_name & :application_version when
|
* Apps strongly encouraged to set :application_name & :application_version when
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = "google-api-client"
|
s.name = "google-api-client"
|
||||||
s.version = "0.6.0"
|
s.version = "0.6.1"
|
||||||
|
|
||||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||||
s.authors = ["Bob Aman", "Steve Bazyl"]
|
s.authors = ["Bob Aman", "Steve Bazyl"]
|
||||||
s.date = "2013-01-04"
|
s.date = "2013-01-15"
|
||||||
s.description = "The Google API Ruby Client makes it trivial to discover and access supported\nAPIs.\n"
|
s.description = "The Google API Ruby Client makes it trivial to discover and access supported\nAPIs.\n"
|
||||||
s.email = "sbazyl@google.com"
|
s.email = "sbazyl@google.com"
|
||||||
s.executables = ["google-api"]
|
s.executables = ["google-api"]
|
||||||
|
|
|
@ -22,7 +22,7 @@ if !defined?(::Google::APIClient::VERSION)
|
||||||
module VERSION
|
module VERSION
|
||||||
MAJOR = 0
|
MAJOR = 0
|
||||||
MINOR = 6
|
MINOR = 6
|
||||||
TINY = 0
|
TINY = 1
|
||||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue