Skip to content
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.

Commit

Permalink
Release v4.1.0 and deprecate the library
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Wayne Parrott committed May 9, 2017
1 parent 119b90c commit a335a02
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE.md
@@ -0,0 +1,3 @@
**Note**: oauth2client is now deprecated. As such, it is unlikely that we will
address or respond to your issue. We recommend you use
[google-auth](https://google-auth.readthedocs.io) and [oauthlib](http://oauthlib.readthedocs.io/).
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,3 @@
**Note**: oauth2client is now deprecated. As such, it is unlikely that we will
review or merge to your pull request. We recommend you use
[google-auth](https://google-auth.readthedocs.io) and [oauthlib](http://oauthlib.readthedocs.io/).
18 changes: 18 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,23 @@
# CHANGELOG

## v4.1.0

**Note**: oauth2client is now deprecated. No more features will be added to the
libraries and the core team is turning down support. We recommend you use
[google-auth](https://google-auth.readthedocs.io) and [oauthlib](http://oauthlib.readthedocs.io/).

New features:
* Allow customizing the GCE metadata service address via an env var. (#704)
* Store original encoded and signed identity JWT in OAuth2Credentials. (#680)
* Use jsonpickle in django contrib, if available. (#676)

Bug fixes:
* Typo fixes. (#668, #697)
* Remove b64 padding from PKCE values, per RFC7636. (#683)
* Include LICENSE in Manifest.in. (#694)
* Fix tests and CI. (#705, #712, #713)
* Escape callback error code in flask_util. (#710)

## v4.0.0

New features:
Expand Down
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -4,6 +4,10 @@

This is a client library for accessing resources protected by OAuth 2.0.

**Note**: oauth2client is now deprecated. No more features will be added to the
libraries and the core team is turning down support. We recommend you use
[google-auth](https://google-auth.readthedocs.io) and [oauthlib](http://oauthlib.readthedocs.io/).

Installation
============

Expand Down
2 changes: 1 addition & 1 deletion oauth2client/__init__.py
Expand Up @@ -14,7 +14,7 @@

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

__version__ = '4.0.0'
__version__ = '4.1.0'

GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/v2/auth'
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'
Expand Down
12 changes: 10 additions & 2 deletions setup.py
Expand Up @@ -41,7 +41,14 @@
'six>=1.6.1',
]

long_desc = 'oauth2client is a client library for OAuth 2.0.'
long_desc = """
oauth2client is a client library for OAuth 2.0.
Note: oauth2client is now deprecated. No more features will be added to the
libraries and the core team is turning down support. We recommend you use
`google-auth <https://google-auth.readthedocs.io>`__ and
`oauthlib <http://oauthlib.readthedocs.io/>`__.
"""

version = oauth2client.__version__

Expand All @@ -51,6 +58,7 @@
description='OAuth 2.0 client library',
long_description=long_desc,
author='Google Inc.',
author_email='jonwayne+oauth2client@google.com',
url='http://github.com/google/oauth2client/',
install_requires=install_requires,
packages=find_packages(),
Expand All @@ -62,7 +70,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Development Status :: 5 - Production/Stable',
'Development Status :: 7 - Inactive',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
Expand Down

0 comments on commit a335a02

Please sign in to comment.