From 61793adf7495f8e4c55a16040797f34f5ede0f82 Mon Sep 17 00:00:00 2001 From: Jon Wayne Parrott Date: Fri, 20 May 2016 11:07:42 -0700 Subject: [PATCH] Release v2.1.0 --- CHANGELOG.md | 7 ++++++- oauth2client/__init__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3382c70..49c481e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## v2.1.0 + +* Add basic support for JWT access credentials. (#503) +* Fix `oauth2client.client.DeviceFlowInfo` to use UTC instead of the system timezone when calculating code expiration. + ## v2.0.2 * Fix issue where `flask_util.UserOAuth2.required` would accept expired credentials (#452). @@ -14,7 +19,7 @@ * Adding common `sign_blob()` to service account types and a `service_account_email` property. (#421) * Improving error message in P12 factory - `ServiceAccountCredentials.from_p12_keyfile` when pyOpenSSL is + `ServiceAccountCredentials.frogit gadm_p12_keyfile` when pyOpenSSL is missing. (#424) * Allowing default flags in `oauth2client.tools.run_flow()` rather than forcing users to create a dummy argparser (#426) diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py index ed6017c..80b57e2 100644 --- a/oauth2client/__init__.py +++ b/oauth2client/__init__.py @@ -14,7 +14,7 @@ """Client library for using OAuth2, especially with Google APIs.""" -__version__ = '2.0.2' +__version__ = '2.1.0' GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/v2/auth' GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'