Bump version

This commit is contained in:
Steven Bazyl 2014-12-18 09:23:54 -08:00
parent 6a6f1fb165
commit 0d0bba2458
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,6 @@
# 0.8.1
* Fix logger in rails
# 0.8.0 # 0.8.0
* Refactored credential storage, added support for redis * Refactored credential storage, added support for redis
* Update gem depdendencies * Update gem depdendencies
@ -6,15 +9,16 @@
* Batch requests with the service interface now inherit the service's connection * Batch requests with the service interface now inherit the service's connection
* `register_discover_document` now returns the API instance * `register_discover_document` now returns the API instance
* Added `:proxy` option to set Faraday's HTTP proxy setting * 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 * 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 # 0.7.1
* Minor fix to update gem dependencies * Minor fix to update gem dependencies
# 0.7.0 # 0.7.0
* Remove CLI * 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`) * Experimental new interface (see `Google::APIClient::Service`)
* Fix warnings when using Faraday separately * Fix warnings when using Faraday separately
* Support Google Compute Engine service accounts * Support Google Compute Engine service accounts

View File

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