summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmer Katz <omerk@checkpoint.com>2017-09-07 13:50:53 +0300
committerOmer Katz <omerk@checkpoint.com>2017-09-07 13:50:53 +0300
commit122b51c72a78aad249ee6547d89f8bc0a06fd9b3 (patch)
treed2ea3113436f97564fe4f41c33607ba07b7a4ff9
parent612ac5b0f606e689b86d6918884391cb8e07c060 (diff)
downloadoauthlib-122b51c72a78aad249ee6547d89f8bc0a06fd9b3.tar.gz
Bump version to 2.0.3.v2.0.3
-rw-r--r--CHANGELOG.rst21
-rw-r--r--oauthlib/__init__.py2
2 files changed, 19 insertions, 4 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 7afc875..4534edc 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,13 +1,28 @@
Changelog
=========
-Development
------------
+2.0.3 (2017-09-07)
+------------------
+* Address missing OIDC errors and fix a typo in the AccountSelectionRequired exception.
+* Update proxy keys on CaseInsensitiveDict.update().
+* Redirect errors according to OIDC's response_mode.
+* Added universal wheel support.
+* Added log statements to except clauses.
+* According to RC7009 Section 2.1, a client should include authentication credentials when revoking its tokens.
+ As discussed in #339, this is not make sense for public clients.
+ However, in that case, the public client should still be checked that is infact a public client (authenticate_client_id).
+* Improved prompt parameter validation.
+* Added two error codes from RFC 6750.
+* Hybrid response types are now be fragment-encoded.
+* Added Python 3.6 to Travis CI testing and trove classifiers.
+* Fixed BytesWarning issued when using a string placeholder for bytes object.
+* Documented PyJWT dependency and improved logging and exception messages.
+* Documentation improvements and fixes.
2.0.2 (2017-03-19)
------------------
* Dropped support for Python 2.6, 3.2 & 3.3.
-* (FIX) `OpenIDConnector` will no longer raise an AttributeError when calling `openid_authorization_validator()` twice.
+* (FIX) `OpenIDConnector` will no longer raise an AttributeError when calling `openid_authorization_validator()` twice.
2.0.1 (2016-11-23)
------------------
diff --git a/oauthlib/__init__.py b/oauthlib/__init__.py
index e5186a3..1ca97cd 100644
--- a/oauthlib/__init__.py
+++ b/oauthlib/__init__.py
@@ -10,7 +10,7 @@
"""
__author__ = 'Idan Gazit <idan@gazit.me>'
-__version__ = '2.0.2'
+__version__ = '2.0.3'
import logging