Skip to content

Commit 85df325

Browse files
committed
Merge pull request googleapis#423 from dhermes/cut-2.0.0-post1
Release v2.0.0-post1.
2 parents 0c79960 + d9cf4b7 commit 85df325

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

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

3+
## v2.0.0-post1
4+
5+
* Fix Google Compute Engine breakage (#411, breakage introduced in #387) that
6+
made it impossible to obtain access tokens
7+
* Implement `ServiceAccountCredentials.from_p12_keyfile_buffer()`
8+
to allow passing a file-like object in addition to the factory
9+
constructor that uses a filename directly (#413)
10+
* Implement `ServiceAccountCredentials.create_delegated()`
11+
to allow upgrading a credential to one that acts on behalf
12+
of a given subject (#420)
13+
314
## v2.0.0
415

516
* Add django_util (#332)

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.0.0'
17+
__version__ = '2.0.0-post1'
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)