Prepare for v0.10 development

This commit is contained in:
Daniel Azuma 2019-08-05 18:55:27 -07:00
parent c5e5f55bfe
commit 464d2650d0
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,16 @@
### 0.10.0 / Unreleased
* Requires Ruby 2.4 or later.
### 0.9.0 / 2019-08-05
* Restore compatibility with Ruby 2.0. This is the last release that will work on end-of-lifed versions of Ruby. The 0.10 release will require Ruby 2.4 or later.
* Update Credentials to use methods for values that are intended to be changed by users, replacing constants.
* Add retry on error for fetch_access_token
* Allow specifying custom state key-values
* Add verbosity none to gcloud command
* Make arity of WebUserAuthorizer#get_credentials compatible with the base class
### 0.8.1 / 2019-03-27
* Silence unnecessary gcloud warning

View File

@ -31,6 +31,6 @@ module Google
# Module Auth provides classes that provide Google-specific authorization
# used to access Google APIs.
module Auth
VERSION = "0.8.1".freeze
VERSION = "0.10.0".freeze
end
end