diff --git a/CHANGELOG b/CHANGELOG index 4ab3020..8a82ec0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +v1.4.3 + Version 1.4.3 + + Big thanks to @dhermes for spotting and fixing a mess in our test setup. + + Fix a serious issue with tests not being run. (#86, #87, #89) + Start credentials cleanup for single 2LO/3LO call. (#83, #84) + Clean up stack traces when re-raising in some places. (#79) + Clean up doc building. (#81, #82) + Fixed minimum version for `six` dependency. (#75) + v1.4.2 Version 1.4.2 diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py index ea16c83..783cac0 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.2' +__version__ = '1.4.3' GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth' GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'