Merge pull request #177 from craigcitro/new_release

Release v1.4.8.
This commit is contained in:
Nathaniel Manista
2015-05-13 16:40:27 -07:00
2 changed files with 11 additions and 1 deletions

View File

@@ -1,5 +1,15 @@
# CHANGELOG
## v1.4.8
* Better handling of `body` during token refresh when `body` is a stream.
* Better handling of expired tokens in storage.
* Cleanup around `openSSL` import.
* Allow custom directory for the `well_known_file`.
* Integration tests for python2 and python3. (!!!)
* Stricter file permissions when saving the `well_known_file`.
* Test cleanup around config file locations.
## v1.4.7
* Add support for Google Developer Shell credentials.

View File

@@ -1,6 +1,6 @@
"""Client library for using OAuth2, especially with Google APIs."""
__version__ = '1.4.7'
__version__ = '1.4.8'
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth'
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'