From 0d0bba245866ba3bfabaa7e32a8805d3dde39fd0 Mon Sep 17 00:00:00 2001 From: Steven Bazyl Date: Thu, 18 Dec 2014 09:23:54 -0800 Subject: [PATCH] Bump version --- CHANGELOG.md | 8 ++++++-- lib/google/api_client/version.rb | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dba585e4b..3e7c1172aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.8.1 +* Fix logger in rails + # 0.8.0 * Refactored credential storage, added support for redis * Update gem depdendencies @@ -6,15 +9,16 @@ * 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 +* Drop 1.8.x support +* This will be the last release with 1.9.x support # 0.7.1 * Minor fix to update gem dependencies # 0.7.0 * Remove CLI -* SUpport for automatic retires & backoff. Off by default, enable by setting `retries` on `APIClient` +* Support for automatic retires & backoff. Off by default, enable by setting `retries` on `APIClient` * Experimental new interface (see `Google::APIClient::Service`) * Fix warnings when using Faraday separately * Support Google Compute Engine service accounts diff --git a/lib/google/api_client/version.rb b/lib/google/api_client/version.rb index c8b7196c99..8138956bff 100644 --- a/lib/google/api_client/version.rb +++ b/lib/google/api_client/version.rb @@ -18,7 +18,7 @@ module Google module VERSION MAJOR = 0 MINOR = 8 - TINY = 0 + TINY = 1 PATCH = nil STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.') end -- 2.30.2