aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Wayne Parrott <jonwayne@google.com>2017-05-10 16:11:19 -0700
committerGitHub <noreply@github.com>2017-05-10 16:11:19 -0700
commit00926f2058e23da7f6772ad6477e64d7506415e5 (patch)
tree546c2882464f8d743201da6dc1d15b3063b76363
parent119b90cbc91ed9d892df45413be5b551d90406e2 (diff)
downloadoauth2client-00926f2058e23da7f6772ad6477e64d7506415e5.tar.gz
Release v4.1.0 and deprecate the library (#714)
-rw-r--r--.github/ISSUE_TEMPLATE.md3
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md3
-rw-r--r--CHANGELOG.md18
-rw-r--r--README.md4
-rw-r--r--oauth2client/__init__.py2
-rw-r--r--setup.py12
6 files changed, 39 insertions, 3 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000..2ce3395
--- /dev/null
+++ b/.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/).
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..1fbd4d2
--- /dev/null
+++ b/.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/).
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1094c39..fb86c26 100644
--- a/CHANGELOG.md
+++ b/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:
diff --git a/README.md b/README.md
index 0f34a63..e6c1879 100644
--- a/README.md
+++ b/README.md
@@ -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
============
diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py
index ef19360..30edb18 100644
--- a/oauth2client/__init__.py
+++ b/oauth2client/__init__.py
@@ -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'
diff --git a/setup.py b/setup.py
index faff5c8..6f6e371 100644
--- a/setup.py
+++ b/setup.py
@@ -41,7 +41,14 @@ install_requires = [
'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__
@@ -51,6 +58,7 @@ setup(
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(),
@@ -62,7 +70,7 @@ setup(
'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',