Skip to content

Commit f15e80e

Browse files
committed
Merge pull request googleapis#292 from dhermes/release-1.5.0
Releasing 1.5.0.
2 parents 19abb4d + 4bb4c4a commit f15e80e

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# CHANGELOG
22

3+
## v1.5.0
4+
5+
* Fix (more like clarify) `bytes` / `str` handling in crypto
6+
methods. (#203, #250, #272)
7+
* Replacing `webapp` with `webapp2` in `oauth2client.appengine` (#217)
8+
* Added optional `state` parameter to
9+
`step1_get_authorize_url`. (#219 and #222)
10+
* Added `flask_util` module that provides a Flask extension to aid
11+
with using OAuth2 web server flow. This provides the same functionality
12+
as the `appengine.webapp2` OAuth2Decorator, but will work with any Flask
13+
application regardless of hosting environment. (#226, #273)
14+
* Track scopes used on credentials objects (#230)
15+
* Moving docs to [readthedocs.org][1] (#237, #238, #244)
16+
* Removing `old_run` module. Was deprecated July 2, 2013. (#285)
17+
* Avoid proxies when querying for GCE metadata (to check if
18+
running on GCE) (#114, #293)
19+
20+
[1]: https://readthedocs.org/
21+
322
## v1.4.12
423

524
* Fix OS X flaky test failure (#189).

oauth2client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
"""Client library for using OAuth2, especially with Google APIs."""
1616

17-
__version__ = '1.4.12'
17+
__version__ = '1.5.0'
1818

1919
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth'
2020
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'

0 commit comments

Comments
 (0)