From 855a7fc823f79d4ac0d025b7140ff5c13abf749c Mon Sep 17 00:00:00 2001 From: Steven Bazyl Date: Mon, 9 Sep 2013 13:23:09 -0700 Subject: [PATCH] 0.7.0.rc1 release --- CHANGELOG.md | 11 +++++++++++ lib/google/api_client/version.rb | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e53283c6c..07c0211e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.7.0.rc1 +* Fix warnings when using Faraday separately +* Support Google Compute Engine service accounts +* Enable gzip compression for responses +* Upgrade to Faraday 0.9.x. Resolves multiple issues with query parameter encodings. +* Use bundled root certificates for verifying SSL certificates +* Rewind media when retrying uploads + +# 0.6.4 +* Pin signet version to 0.4.x + # 0.6.3 * Update autoparse to 0.3.3 to fix cases where results aren't correctly parsed. diff --git a/lib/google/api_client/version.rb b/lib/google/api_client/version.rb index 65ff5b671..84e85b063 100644 --- a/lib/google/api_client/version.rb +++ b/lib/google/api_client/version.rb @@ -23,7 +23,8 @@ if !defined?(::Google::APIClient::VERSION) MAJOR = 0 MINOR = 7 TINY = 0 - STRING = [MAJOR, MINOR, TINY].join('.') + PATCH = 'rc1' + STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.') end end end