From 63ccd91836697464ac41c6de9337f24f39211796 Mon Sep 17 00:00:00 2001 From: Steven Bazyl Date: Wed, 17 Dec 2014 12:59:54 -0800 Subject: [PATCH] Update changelog & bump version --- CHANGELOG.md | 11 +++++++++++ lib/google/api_client/version.rb | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c22d14ec..0dba585e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.8.0 +* Refactored credential storage, added support for redis +* Update gem depdendencies +* Fixed retry logic to allow for auth retries independent of the overall number of retries +* Added `:force_encoding` option to set body content encoding based on the Content-Type header +* Batch requests with the service interface now inherit the service's connection +* `register_discover_document` now returns the API instance +* Added `:proxy` option to set Faraday's HTTP proxy setting +* Drop 1.8.x support +* Added `:faraday_options` option to allow passthrough settings to Faraday connection + # 0.7.1 * Minor fix to update gem dependencies diff --git a/lib/google/api_client/version.rb b/lib/google/api_client/version.rb index ee12fd33b..c8b7196c9 100644 --- a/lib/google/api_client/version.rb +++ b/lib/google/api_client/version.rb @@ -17,8 +17,8 @@ module Google class APIClient module VERSION MAJOR = 0 - MINOR = 7 - TINY = 1 + MINOR = 8 + TINY = 0 PATCH = nil STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.') end