summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@users.noreply.github.com>2021-10-16 08:28:39 -0400
committerJosé Padilla <jpadilla@users.noreply.github.com>2021-10-16 08:28:39 -0400
commit010eac1ac82753861ead8d14d1ac9ec20948e1fc (patch)
tree22712413e3f60d64ba505a6357e5d5dca672e906
parentf9db1d7b3acbe81daea7bc79cbc731f7c900221f (diff)
downloadpyjwt-bump-version.tar.gz
Bump up version to v2.3.0bump-version
-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"