summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@gmail.com>2021-05-31 22:02:39 +0200
committerJonathan Huot <jonathan.huot@gmail.com>2021-05-31 22:02:39 +0200
commit817f97b925a4dfcf01efc5785f061a876b0894f0 (patch)
treedf26dc7ef1bab3ebfb5a68267b19c60e1b6bd7e1
parente634ab9c6945ff9dab27c3d2577d8883aee306a5 (diff)
downloadoauthlib-817f97b925a4dfcf01efc5785f061a876b0894f0.tar.gz
3.1.1 release
-rw-r--r--CHANGELOG.rst15
-rw-r--r--oauthlib/__init__.py2
2 files changed, 14 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 6c37559..79f241d 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,7 +1,7 @@
Changelog
=========
-3.1.1 (TBD)
+3.1.1 (2021-05-31)
------------------
OAuth2.0 Provider - Bugfixes
@@ -21,7 +21,18 @@ OAuth2.0 Client - Bugfixes
* #725: LegacyApplicationClient.prepare_request_body now correctly uses the default `scope` provided in constructor
OAuth2.0 Provider - Bugfixes
- * #756: Different prompt values are now handled according to spec
+ * #711: client_credentials grant: fix log message
+ * #746: OpenID Connect Hybrid - fix nonce not passed to add_id_token
+ * #756: Different prompt values are now handled according to spec (e.g. prompt=none)
+ * #759: OpenID Connect - fix Authorization: Basic parsing
+
+General
+ * #716: improved skeleton validator for public vs private client
+ * #720: replace mock library with standard unittest.mock
+ * #727: build isort integration
+ * #734: python2 code removal
+ * #735, #750: add python3.8 support
+ * #749: bump minimum versions of pyjwt and cryptography
3.1.0 (2019-08-06)
------------------
diff --git a/oauthlib/__init__.py b/oauthlib/__init__.py
index c7d19a1..a94cf94 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.1.0-dev'
+__version__ = '3.1.1'
logging.getLogger('oauthlib').addHandler(NullHandler())