Skip to content

Commit

Permalink
0.7.0.rc1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sqrrrl committed Sep 9, 2013
1 parent dca6f34 commit 855a7fc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
3 changes: 2 additions & 1 deletion lib/google/api_client/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ module VERSION
MAJOR = 0
MINOR = 7
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
PATCH = 'rc1'
STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
end
end
end
Expand Down

0 comments on commit 855a7fc

Please sign in to comment.