From f369139b32850e2a32e3dc9faf0fe2deb7b2b996 Mon Sep 17 00:00:00 2001 From: Steven Bazyl Date: Mon, 14 Jan 2013 17:00:58 -0800 Subject: [PATCH] Minor release to fix service account impersonation --- CHANGELOG.md | 4 ++++ google-api-client.gemspec | 4 ++-- lib/google/api_client/version.rb | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0005db3ba..44d67b01a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.6.1 + +* Fix impersonation with service accounts + # 0.6 * Apps strongly encouraged to set :application_name & :application_version when diff --git a/google-api-client.gemspec b/google-api-client.gemspec index 21d7cf05c..c7bc1168b 100644 --- a/google-api-client.gemspec +++ b/google-api-client.gemspec @@ -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"] diff --git a/lib/google/api_client/version.rb b/lib/google/api_client/version.rb index 2e517f240..b200bccec 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 = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end end