summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.rst15
-rw-r--r--jwt/__init__.py2
2 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index e2f4cd0..498a544 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 <https://semver.org/>`__.
-`Unreleased <https://github.com/jpadilla/pyjwt/compare/2.1.0...HEAD>`__
+`Unreleased <https://github.com/jpadilla/pyjwt/compare/2.3.0...HEAD>`__
-----------------------------------------------------------------------
Changed
@@ -16,6 +16,19 @@ Fixed
Added
~~~~~
+`v2.3.0 <https://github.com/jpadilla/pyjwt/compare/2.2.0...2.3.0>`__
+-----------------------------------------------------------------------
+
+Fixed
+~~~~~
+
+- Revert "Remove arbitrary kwargs." `#701 <https://github.com/jpadilla/pyjwt/pull/701>`__
+
+Added
+~~~~~
+
+- Add exception chaining `#702 <https://github.com/jpadilla/pyjwt/pull/702>`__
+
`v2.2.0 <https://github.com/jpadilla/pyjwt/compare/2.1.0...2.2.0>`__
-----------------------------------------------------------------------
diff --git a/jwt/__init__.py b/jwt/__init__.py
index 0631c99..3208c39 100644
--- a/jwt/__init__.py
+++ b/jwt/__init__.py
@@ -25,7 +25,7 @@ from .exceptions import (
)
from .jwks_client import PyJWKClient
-__version__ = "2.2.0"
+__version__ = "2.3.0"
__title__ = "PyJWT"
__description__ = "JSON Web Token implementation in Python"