summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIb Lundgren <ib.lundgren@gmail.com>2014-01-20 11:09:23 +0000
committerIb Lundgren <ib.lundgren@gmail.com>2014-01-20 11:09:23 +0000
commit056e7ce13de4de913af8617891dc92e0ea43c669 (patch)
tree359d827bf68b25ecae41bb59242e2ad53c53e192
parent0b02436e443eef2309639822cfa76f569801a30f (diff)
downloadoauthlib-056e7ce13de4de913af8617891dc92e0ea43c669.tar.gz
0.6.10.6.1
-rw-r--r--README.rst21
-rw-r--r--oauthlib/__init__.py2
2 files changed, 22 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 3abe83f..5eb093d 100644
--- a/README.rst
+++ b/README.rst
@@ -95,6 +95,27 @@ details.
.. _`supported features`: http://oauthlib.readthedocs.org/en/latest/feature_matrix.html
+0.6.1: Draft revocation endpoint features and numerous fixes including
+
+* (OAuth 2 Provider) is_within_original_scope to check whether a refresh token
+ is trying to aquire a new set of scopes that are a subset of the original scope.
+
+* (OAuth 2 Provider) expires_in token lifetime can be set per request.
+
+* (OAuth 2 Provider) client_authentication_required method added to differentiate
+ between public and confidential clients.
+
+* (OAuth 2 Provider) rotate_refresh_token now indicates whether a new refresh
+ token should be generated during token refresh or if old should be kept.
+
+* (OAuth 2 Provider) returned JSON headers no longer include charset.
+
+* (OAuth 2 Provider) validate_authorizatoin_request now also includes the
+ internal request object in the returned dictionary. Note that this is
+ not meant to be relied upon heavily and its interface might change.
+
+* and many style and typo fixes.
+
0.6.0: OAuth 1 & 2 provider API refactor with breaking changes
* All endpoint methods change contract to return 3 values instead of 4. The new
diff --git a/oauthlib/__init__.py b/oauthlib/__init__.py
index 3665d03..4c39832 100644
--- a/oauthlib/__init__.py
+++ b/oauthlib/__init__.py
@@ -10,4 +10,4 @@
"""
__author__ = 'Idan Gazit <idan@gazit.me>'
-__version__ = '0.6.0'
+__version__ = '0.6.1'