Release v2.1.0

This commit is contained in:
Jon Wayne Parrott
2016-05-20 11:07:42 -07:00
parent e54e28939c
commit 61793adf74
2 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
# CHANGELOG # 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 ## v2.0.2
* Fix issue where `flask_util.UserOAuth2.required` would accept expired credentials (#452). * 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 * Adding common `sign_blob()` to service account types and a
`service_account_email` property. (#421) `service_account_email` property. (#421)
* Improving error message in P12 factory * Improving error message in P12 factory
`ServiceAccountCredentials.from_p12_keyfile` when pyOpenSSL is `ServiceAccountCredentials.frogit gadm_p12_keyfile` when pyOpenSSL is
missing. (#424) missing. (#424)
* Allowing default flags in `oauth2client.tools.run_flow()` * Allowing default flags in `oauth2client.tools.run_flow()`
rather than forcing users to create a dummy argparser (#426) rather than forcing users to create a dummy argparser (#426)

View File

@@ -14,7 +14,7 @@
"""Client library for using OAuth2, especially with Google APIs.""" """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_AUTH_URI = 'https://accounts.google.com/o/oauth2/v2/auth'
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code' GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'