From 72ad55f6d7041ae698dc0790a690804118be50fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Tue, 18 Jul 2023 14:30:05 -0400 Subject: [PATCH] bump version --- CHANGELOG.rst | 16 ++++++++++++++++ jwt/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b5cffbdf..8bc23195 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,7 +16,23 @@ Fixed Added ~~~~~ +`v2.8.0 `__ +----------------------------------------------------------------------- + +Changed +~~~~~~~ + +- Update python version test matrix by @auvipy in `#895 `__ + +Fixed +~~~~~ + +Added +~~~~~ + - Add ``strict_aud`` as an option to ``jwt.decode`` by @woodruffw in `#902 `__ +- Export PyJWKClientConnectionError class by @daviddavis in `#887 `__ +- Allows passing of ssl.SSLContext to PyJWKClient by @juur in `#891 `__ `v2.7.0 `__ ----------------------------------------------------------------------- diff --git a/jwt/__init__.py b/jwt/__init__.py index 151f18dc..68d09c1c 100644 --- a/jwt/__init__.py +++ b/jwt/__init__.py @@ -27,7 +27,7 @@ ) from .jwks_client import PyJWKClient -__version__ = "2.7.0" +__version__ = "2.8.0" __title__ = "PyJWT" __description__ = "JSON Web Token implementation in Python"