Minor release to fix service account impersonation

This commit is contained in:
Steven Bazyl 2013-01-14 17:00:58 -08:00
parent 47bdbc124e
commit f369139b32
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
# 0.6.1
* Fix impersonation with service accounts
# 0.6
* Apps strongly encouraged to set :application_name & :application_version when

View File

@ -2,11 +2,11 @@
Gem::Specification.new do |s|
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.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.email = "sbazyl@google.com"
s.executables = ["google-api"]

View File

@ -22,7 +22,7 @@ if !defined?(::Google::APIClient::VERSION)
module VERSION
MAJOR = 0
MINOR = 6
TINY = 0
TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end
end