Skip to content

Commit

Permalink
Update version and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
skruger committed Jan 7, 2019
1 parent 9d0b233 commit 2ca8e8d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
13 changes: 12 additions & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
@@ -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
* Access token response returns a space seperated list of scopes instead of an integer value
2 changes: 1 addition & 1 deletion provider/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2"
__version__ = "2.0"
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
],
install_requires=[
"shortuuid>=0.4",
"six>=0.11.0",
"sqlparse>=0.2.4",
],
include_package_data=True,
zip_safe=False,
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 2ca8e8d

Please sign in to comment.