From 464d2650d0536778200968fb5374972d36d632b3 Mon Sep 17 00:00:00 2001 From: Daniel Azuma Date: Mon, 5 Aug 2019 18:55:27 -0700 Subject: [PATCH] Prepare for v0.10 development --- CHANGELOG.md | 13 +++++++++++++ lib/googleauth/version.rb | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 400b405..430e2c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/lib/googleauth/version.rb b/lib/googleauth/version.rb index 758d17c..def1a08 100644 --- a/lib/googleauth/version.rb +++ b/lib/googleauth/version.rb @@ -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