aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Hermes <daniel.j.hermes@gmail.com>2016-03-03 09:37:45 -0800
committerDanny Hermes <daniel.j.hermes@gmail.com>2016-03-03 09:37:45 -0800
commit05a74b48ae294b326548491844a9bf11651f02ed (patch)
tree29fa52b7c217ed31f027177e26a56cdd002b67d2
parent4b0a5edd47142a02e5bf585d8009195a29036449 (diff)
downloadoauth2client-05a74b48ae294b326548491844a9bf11651f02ed.tar.gz
Release v2.0.1.
-rw-r--r--CHANGELOG.md18
-rw-r--r--oauth2client/__init__.py2
2 files changed, 19 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 21f906c..8f2a38f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,23 @@
# CHANGELOG
+## v2.0.1
+
+* Making scopes optional on Google Compute Engine `AppAssertionCredentials`
+ and adding a warning that GCE won't honor scopes (#419)
+* 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
+ missing. (#424)
+* Allowing default flags in `oauth2client.tools.run_flow()`
+ rather than forcing users to create a dummy argparser (#426)
+* Removing `oauth2client.util.dict_to_tuple_key()` from public
+ interface (#429)
+* Adding `oauth2client.contrib._appengine_ndb` helper module
+ for `oauth2client.contrib.appengine` and moving most code that
+ uses the `ndb` library into the helper (#434)
+* Fix error in `django_util` sample code (#438)
+
## v2.0.0-post1
* Fix Google Compute Engine breakage (#411, breakage introduced in #387) that
diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py
index 5efc7da..d8ed98c 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.0-post1'
+__version__ = '2.0.1'
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/v2/auth'
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'