summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2019-02-27 15:32:03 +0100
committerGitHub <noreply@github.com>2019-02-27 15:32:03 +0100
commit1b79429ff1b23b1430c79fb56fa766ce53f29790 (patch)
treef181008a8af7668d165d4ab27557f891fbc4110e
parent932b6844c986604e1aa9603f76e83a2229f3d9e8 (diff)
parentb5cef9f1f3715c4a876d52973a4e36b13d53221b (diff)
downloadoauthlib-oidc-nonce.tar.gz
Merge branch 'master' into oidc-nonceoidc-nonce
-rw-r--r--CHANGELOG.rst2
-rw-r--r--oauthlib/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index f49fb92..ade6243 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,7 +1,7 @@
Changelog
=========
-TBD
+3.0.2 (TBD)
------------------
* #650 Fixed space encoding in base string URI used in the signature base string.
* #652: Fixed OIDC /token response which wrongly returned "&state=None"
diff --git a/oauthlib/__init__.py b/oauthlib/__init__.py
index b23102c..8eb82a6 100644
--- a/oauthlib/__init__.py
+++ b/oauthlib/__init__.py
@@ -12,6 +12,6 @@ import logging
from logging import NullHandler
__author__ = 'The OAuthlib Community'
-__version__ = '3.0.1'
+__version__ = '3.0.2-dev'
logging.getLogger('oauthlib').addHandler(NullHandler())