diff --git a/README.rst b/README.rst index 1f8ce9669..42dec11b6 100644 --- a/README.rst +++ b/README.rst @@ -88,13 +88,14 @@ Changelog --------- -master branch -~~~~~~~~~~~~~ +0.9.0 [2015-07-28] +~~~~~~~~~~~~~~~~~~ * ``oauthlib_backend_class`` is now pluggable through Django settings * #127: ``application/json`` Content-Type is now supported using ``JSONOAuthLibCore`` * #238: Fixed redirect uri handling in case of error * #229: Invalidate access tokens when getting a new refresh token +* added support for oauthlib 1.0 0.8.2 [2015-06-25] ~~~~~~~~~~~~~~~~~~ diff --git a/docs/changelog.rst b/docs/changelog.rst index f1ba674c5..839a34e2d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,13 +1,14 @@ Changelog ========= -master branch -------------- +0.9.0 [2015-07-28] +~~~~~~~~~~~~~~~~~~ * ``oauthlib_backend_class`` is now pluggable through Django settings * #127: ``application/json`` Content-Type is now supported using ``JSONOAuthLibCore`` * #238: Fixed redirect uri handling in case of error * #229: Invalidate access tokens when getting a new refresh token +* added support for oauthlib 1.0 0.8.2 [2015-06-25] diff --git a/oauth2_provider/__init__.py b/oauth2_provider/__init__.py index d6aa88774..9ffed34b1 100644 --- a/oauth2_provider/__init__.py +++ b/oauth2_provider/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.8.2' +__version__ = '0.9.0' __author__ = "Massimiliano Pippi & Federico Frenguelli" diff --git a/setup.py b/setup.py index 81920e63f..77bd24f9d 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ def get_version(package): install_requires=[ 'django>=1.4', 'django-braces>=1.2.2', - 'oauthlib>=0.6.2', + 'oauthlib==1.0.1', 'six', ], zip_safe=False,