diff --git a/README.rst b/README.rst index 738f9d9c0..ddb37abbc 100644 --- a/README.rst +++ b/README.rst @@ -42,7 +42,7 @@ Requirements ------------ * Python 2.7, 3.3 -* Django 1.4, 1.5, 1.6b3 +* Django 1.4, 1.5, 1.6 Installation ------------ @@ -93,6 +93,22 @@ Highest priority first Changelog --------- +0.5.0 [2013-09-17] + + * oauthlib 0.6.0 support + +**Backwards incompatible changes in 0.5.0** + + * `backends.py` module has been renamed to `oauth2_backends.py` so you should change your imports whether + you're extending this module + +**Bugfixes** + + * Issue #54: Auth backend proposal to address #50 + * Issue #61: Fix contributing page + * Issue #55: Add support for authenticating confidential client with request body params + * Issue #53: Quote characters in the url query that are safe for Django but not for oauthlib + 0.4.1 [2013-09-06] * Optimize queries on access token validation diff --git a/docs/changelog.rst b/docs/changelog.rst index 02eb9b277..df3b32436 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,23 @@ Changelog ========= +0.5.0 [2013-09-17] +------------------ + + * oauthlib 0.6.0 support + +**Backwards incompatible changes in 0.5.0** + + * backends.py module has been renamed to oauth2_backends.py so you should change your imports whether you're extending + this module + +**Bugfixes** + + * Issue #54: Auth backend proposal to address #50 + * Issue #61: Fix contributing page + * Issue #55: Add support for authenticating confidential client with request body params + * Issue #53: Quote characters in the url query that are safe for Django but not for oauthlib + 0.4.1 [2013-09-06] ------------------ diff --git a/oauth2_provider/__init__.py b/oauth2_provider/__init__.py index 3776578fb..70d0e1ca4 100644 --- a/oauth2_provider/__init__.py +++ b/oauth2_provider/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.4.1' +__version__ = '0.5.0' __author__ = "Massimiliano Pippi & Federico Frenguelli"