From 944167de1b048138756f13db7ec8649552021598 Mon Sep 17 00:00:00 2001 From: Steven Bazyl Date: Fri, 9 Jan 2015 16:05:40 -0800 Subject: [PATCH] Minor release --- CHANGELOG.md | 7 +++++-- lib/google/api_client/version.rb | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e7c1172a..b92ba7eae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.8.2 +* Fixes for file storage and missing cacerts file + # 0.8.1 * Fix logger in rails @@ -12,7 +15,7 @@ * 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 @@ -62,7 +65,7 @@ # 0.5.0 -* Beta candidate, potential incompatible changes with how requests are processed. +* Beta candidate, potential incompatible changes with how requests are processed. * All requests should be made using execute() or execute!() * :api_method in request can no longer be a string * Deprecated ResumableUpload.send_* methods. diff --git a/lib/google/api_client/version.rb b/lib/google/api_client/version.rb index 654aeffbf..228fa1444 100644 --- a/lib/google/api_client/version.rb +++ b/lib/google/api_client/version.rb @@ -18,8 +18,8 @@ module Google module VERSION MAJOR = 0 MINOR = 8 - TINY = 1 - PATCH = 1 + TINY = 2 + PATCH = nil STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.') end end