summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2019-07-19 12:43:01 +0200
committerGitHub <noreply@github.com>2019-07-19 12:43:01 +0200
commit462f34e91a6a0c40a4a184dae506b0db75d0db79 (patch)
tree27634f0a94a14708e6d60993a5fa37ee3b06543a
parent4112c2acb4b55b4dff679e83dc645e072e65ca65 (diff)
parent0a9fd41faed16e15e04d6bfeef2b532d090f05bf (diff)
downloadoauthlib-462f34e91a6a0c40a4a184dae506b0db75d0db79.tar.gz
Merge branch 'master' into oidc-userinfo
-rw-r--r--CHANGELOG.rst6
-rw-r--r--oauthlib/__init__.py2
2 files changed, 5 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index ade6243..c5346eb 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,10 +1,12 @@
Changelog
=========
-3.0.2 (TBD)
+3.0.2 (2019-07-04)
------------------
-* #650 Fixed space encoding in base string URI used in the signature base string.
+* #650: Fixed space encoding in base string URI used in the signature base string.
* #652: Fixed OIDC /token response which wrongly returned "&state=None"
+* #654: Doc: The value `state` must not be stored by the AS, only returned in /authorize response.
+* #656: Fixed OIDC "nonce" checks: raise errors when it's mandatory
3.0.1 (2019-01-24)
------------------
diff --git a/oauthlib/__init__.py b/oauthlib/__init__.py
index 0e413bc..c7d19a1 100644
--- a/oauthlib/__init__.py
+++ b/oauthlib/__init__.py
@@ -12,7 +12,7 @@ import logging
from logging import NullHandler
__author__ = 'The OAuthlib Community'
-__version__ = '3.0.2-dev'
+__version__ = '3.1.0-dev'
logging.getLogger('oauthlib').addHandler(NullHandler())