Skip to content

Commit 855a7fc

Browse files
committed
0.7.0.rc1 release
1 parent dca6f34 commit 855a7fc

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.7.0.rc1
2+
* Fix warnings when using Faraday separately
3+
* Support Google Compute Engine service accounts
4+
* Enable gzip compression for responses
5+
* Upgrade to Faraday 0.9.x. Resolves multiple issues with query parameter encodings.
6+
* Use bundled root certificates for verifying SSL certificates
7+
* Rewind media when retrying uploads
8+
9+
# 0.6.4
10+
* Pin signet version to 0.4.x
11+
112
# 0.6.3
213

314
* Update autoparse to 0.3.3 to fix cases where results aren't correctly parsed.

lib/google/api_client/version.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ module VERSION
2323
MAJOR = 0
2424
MINOR = 7
2525
TINY = 0
26-
STRING = [MAJOR, MINOR, TINY].join('.')
26+
PATCH = 'rc1'
27+
STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
2728
end
2829
end
2930
end

0 commit comments

Comments
 (0)