Update changelog & bump version

This commit is contained in:
Steven Bazyl 2014-12-17 12:59:54 -08:00
parent 7ed22caf82
commit 63ccd91836
2 changed files with 13 additions and 2 deletions

View File

@ -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

View File

@ -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