Skip to content

Commit ae73312

Browse files
Merge pull request googleapis#575 from jonparrott/cut-3.0.0
Release 3.0.0.
2 parents 7b364c2 + b306c63 commit ae73312

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+
## v3.0.0
4+
5+
* Populate `token_expiry` for GCE credentials. (#473)
6+
* Move GCE metadata interface to a separate module. (#520)
7+
* Populate `scopes` for GCE credentials. (#524)
8+
* Fix Python 3.5 compatibility. (#531)
9+
* Add `oauth2client.contrib.sqlalchemy`, a SQLAlchemy-based credential store. (#527)
10+
* Improve error when an invalid client secret is provided. (#530)
11+
* Add `oauth2client.contrib.multiprocess_storage`. This supersedes the functionality in `oauth2client.contrib.multistore_file`. (#504)
12+
* Pull httplib2 usage into a separate transport module. (#559, #561)
13+
* Refactor all django-related code into `oauth2client.contrib.django_util`. Add `DjangoORMStorage`, remove `FlowField`. (#546)
14+
* Fix application default credentials resolution order. (#570)
15+
* Add configurable timeout for GCE metadata server check. (#571)
16+
* Add warnings when using deprecated `approval_prompt='force'`. (#572)
17+
* Add deprecation warning to `oauth2client.contrib.multistore_file`. (#574)
18+
* (Hygiene) PEP8 compliance and various style fixes (#537, #540, #552, #562)
19+
* (Hygiene) Remove duplicated exception classes in `oauth2client.contrib.appengine`. (#533)
20+
21+
NOTE: The next major release of oauth2client (v4.0.0) will remove the `oauth2client.contrib.multistore_file` module.
322

423
## v2.2.0
524

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__ = '2.2.0'
17+
__version__ = '3.0.0'
1818

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

0 commit comments

Comments
 (0)