From 010eac1ac82753861ead8d14d1ac9ec20948e1fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Sat, 16 Oct 2021 08:28:39 -0400 Subject: [PATCH] Bump up version to v2.3.0 --- CHANGELOG.rst | 15 ++++++++++++++- jwt/__init__.py | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e2f4cd0d..498a544a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,7 +4,7 @@ Changelog All notable changes to this project will be documented in this file. This project adheres to `Semantic Versioning `__. -`Unreleased `__ +`Unreleased `__ ----------------------------------------------------------------------- Changed @@ -16,6 +16,19 @@ Fixed Added ~~~~~ +`v2.3.0 `__ +----------------------------------------------------------------------- + +Fixed +~~~~~ + +- Revert "Remove arbitrary kwargs." `#701 `__ + +Added +~~~~~ + +- Add exception chaining `#702 `__ + `v2.2.0 `__ ----------------------------------------------------------------------- diff --git a/jwt/__init__.py b/jwt/__init__.py index 0631c99c..3208c39f 100644 --- a/jwt/__init__.py +++ b/jwt/__init__.py @@ -25,7 +25,7 @@ ) from .jwks_client import PyJWKClient -__version__ = "2.2.0" +__version__ = "2.3.0" __title__ = "PyJWT" __description__ = "JSON Web Token implementation in Python"