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