Skip to content

Commit ac3f975

Browse files
author
Jon Wayne Parrott
authored
Release v0.1.0 (#64)
1 parent aebd030 commit ac3f975

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
Changelog
22
=========
33

4+
v0.1.0
5+
------
6+
7+
First release with core functionality available. This version is ready for
8+
initial usage and testing.
9+
10+
- Added ``google.auth.credentials``, public interfaces for Credential types. (#8)
11+
- Added ``google.oauth2.credentials``, credentials that use OAuth 2.0 access and refresh tokens (#24)
12+
- Added ``google.oauth2.service_account``, credentials that use Service Account private keys to obtain OAuth 2.0 access tokens. (#25)
13+
- Added ``google.auth.compute_engine``, credentials that use the Compute Engine metadata service to obtain OAuth 2.0 access tokens. (#22)
14+
- Added ``google.auth.jwt.Credentials``, credentials that use a JWT as a bearer token.
15+
- Added ``google.auth.app_engine``, credentials that use the Google App Engine App Identity service to obtain OAuth 2.0 access tokens. (#46)
16+
- Added ``google.auth.default()``, an implementation of Google Application Default Credentials that supports automatic Project ID detection. (#32)
17+
- Added system tests for all credential types. (#51, #54, #56, #58, #59, #60, #61, #62)
18+
- Added ``google.auth.transports.urllib3.AuthorizedHttp``, an HTTP client that includes authentication provided by credentials. (#19)
19+
- Documentation style and formatting updates.
20+
421
v0.0.1
522
------
623

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
setup(
3131
name='google-auth',
32-
version='0.0.1',
32+
version='0.1.0',
3333
author='Google Cloud Platform',
3434
author_email='[email protected]',
3535
description='Google Authentication Library',
@@ -46,7 +46,7 @@
4646
'Programming Language :: Python :: 3',
4747
'Programming Language :: Python :: 3.4',
4848
'Programming Language :: Python :: 3.5',
49-
'Development Status :: 3 - Alpha',
49+
'Development Status :: 4 - Beta',
5050
'Intended Audience :: Developers',
5151
'License :: OSI Approved :: Apache Software License',
5252
'Operating System :: POSIX',

0 commit comments

Comments
 (0)