Minor release

This commit is contained in:
Steven Bazyl 2015-01-09 16:05:40 -08:00
parent 8f2000d51c
commit 944167de1b
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,6 @@
# 0.8.2
* Fixes for file storage and missing cacerts file
# 0.8.1 # 0.8.1
* Fix logger in rails * Fix logger in rails
@ -12,7 +15,7 @@
* Added `:faraday_options` option to allow passthrough settings to Faraday connection * Added `:faraday_options` option to allow passthrough settings to Faraday connection
* Drop 1.8.x support * Drop 1.8.x support
* This will be the last release with 1.9.x support * This will be the last release with 1.9.x support
# 0.7.1 # 0.7.1
* Minor fix to update gem dependencies * Minor fix to update gem dependencies
@ -62,7 +65,7 @@
# 0.5.0 # 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!() * All requests should be made using execute() or execute!()
* :api_method in request can no longer be a string * :api_method in request can no longer be a string
* Deprecated ResumableUpload.send_* methods. * Deprecated ResumableUpload.send_* methods.

View File

@ -18,8 +18,8 @@ module Google
module VERSION module VERSION
MAJOR = 0 MAJOR = 0
MINOR = 8 MINOR = 8
TINY = 1 TINY = 2
PATCH = 1 PATCH = nil
STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.') STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
end end
end end