From 5a4fe5bc027de602514754b3154b155c6ef30fec Mon Sep 17 00:00:00 2001 From: Daniel Azuma Date: Fri, 9 Oct 2020 12:53:15 -0700 Subject: [PATCH] Release google-auth-library-ruby 0.14.0 (#278) * Honor GCE_METADATA_HOST environment variable * Fix errors in some environments when requesting an access token for multiple scopes --- CHANGELOG.md | 5 +++++ lib/googleauth/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d0b65b..0fab3c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Release History +### 0.14.0 / 2020-10-09 + +* Honor GCE_METADATA_HOST environment variable +* Fix errors in some environments when requesting an access token for multiple scopes + ### 0.13.1 / 2020-07-30 * Support scopes when using GCE Metadata Server authentication ([@ball-hayden][]) diff --git a/lib/googleauth/version.rb b/lib/googleauth/version.rb index 10b5fa9..0e8e4e2 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.13.1".freeze + VERSION = "0.14.0".freeze end end