Update changelog & bump version
This commit is contained in:
parent
7ed22caf82
commit
63ccd91836
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -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
|
# 0.7.1
|
||||||
* Minor fix to update gem dependencies
|
* Minor fix to update gem dependencies
|
||||||
|
|
||||||
|
|
|
@ -17,8 +17,8 @@ module Google
|
||||||
class APIClient
|
class APIClient
|
||||||
module VERSION
|
module VERSION
|
||||||
MAJOR = 0
|
MAJOR = 0
|
||||||
MINOR = 7
|
MINOR = 8
|
||||||
TINY = 1
|
TINY = 0
|
||||||
PATCH = nil
|
PATCH = nil
|
||||||
STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
|
STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue