0.7.0.rc1 release

This commit is contained in:
Steven Bazyl 2013-09-09 13:23:09 -07:00
parent dca6f3448c
commit 855a7fc823
2 changed files with 13 additions and 1 deletions

View File

@ -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.

View File

@ -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