From 2ca8e8d5f4e9e8c964419a9e66cf26427c02ab28 Mon Sep 17 00:00:00 2001 From: Shaun Kruger Date: Sun, 6 Jan 2019 23:18:28 -0700 Subject: [PATCH] Update version and release notes --- docs/changes.rst | 13 ++++++++++++- provider/__init__.py | 2 +- setup.py | 2 ++ tox.ini | 4 +--- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/docs/changes.rst b/docs/changes.rst index 7fe86d33..da4789a8 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,7 +1,18 @@ +v 2.0 +----- +* Update for current Django 1.11, 2.0, and 2.1. + +v 1.2 +----- +Updated to make skopes configurable in the database and update for Django 1.7 + +v 1.0 +----- +Forked from original project at caffeinehit/django-oauth2-provider v 0.2 ----- * *Breaking change* Moved ``provider.oauth2.scope`` to ``provider.scope`` * *Breaking change* Replaced the write scope with a new write scope that includes reading * Default scope for new ``provider.oauth2.models.AccessToken`` is now ``provider.constants.SCOPES[0][0]`` -* Access token response returns a space seperated list of scopes instead of an integer value \ No newline at end of file +* Access token response returns a space seperated list of scopes instead of an integer value diff --git a/provider/__init__.py b/provider/__init__.py index b2a95f90..f2dc0e40 100644 --- a/provider/__init__.py +++ b/provider/__init__.py @@ -1 +1 @@ -__version__ = "1.2" +__version__ = "2.0" diff --git a/setup.py b/setup.py index 16a4946e..a2b6faec 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,8 @@ ], install_requires=[ "shortuuid>=0.4", + "six>=0.11.0", + "sqlparse>=0.2.4", ], include_package_data=True, zip_safe=False, diff --git a/tox.ini b/tox.ini index d0c4758c..94c8ab73 100644 --- a/tox.ini +++ b/tox.ini @@ -8,9 +8,7 @@ setenv = PYTHONPATH = {toxinidir} commands = {toxinidir}/test.sh -deps = shortuuid>=0.5.0 - sqlparse>=0.2.4 - six>=1.12.0 +deps = [travis] python =