From 481b4b6310e5872fbd5ed6c7aa336938e564d729 Mon Sep 17 00:00:00 2001 From: Craig Citro Date: Sat, 20 Dec 2014 10:16:37 -0800 Subject: [PATCH] Release v1.4.5. --- CHANGELOG | 8 ++++++++ oauth2client/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 15c2311..c4fc46c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +v1.4.5 + Version 1.4.5 + + Set a shorter timeout for an Application Default Credentials issue on some + networks. (#93, #101) + Test cleanup, switch from mox to mock. (#103) + Switch docs to sphinx from epydoc. + v1.4.4 Version 1.4.4 diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py index ffdf646..040f079 100644 --- a/oauth2client/__init__.py +++ b/oauth2client/__init__.py @@ -1,6 +1,6 @@ """Client library for using OAuth2, especially with Google APIs.""" -__version__ = '1.4.4' +__version__ = '1.4.5' GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth' GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'