From 7665aa625506a11bae50b56d3e04413a3dc6fdf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Wed, 19 Oct 2022 21:08:12 -0400 Subject: Bump version to 2.6.0 (#813) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: José Padilla --- CHANGELOG.rst | 18 +++++++++++++++++- jwt/__init__.py | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1a00657..a2fac49 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 @@ -13,7 +13,23 @@ Changed Fixed ~~~~~ +Added +~~~~~ + +`v2.6.0 `__ +----------------------------------------------------------------------- + +Changed +~~~~~~~ + +- bump up cryptography >= 3.4.0 by @jpadilla in `#807 `_ +- Remove `types-cryptography` from `crypto` extra by @lautat in `#805 `_ + +Fixed +~~~~~ + - Invalidate token on the exact second the token expires `#797 `_ +- fix: version 2.5.0 heading typo by @c0state in `#803 `_ Added ~~~~~ diff --git a/jwt/__init__.py b/jwt/__init__.py index 9f9eda9..26c79b2 100644 --- a/jwt/__init__.py +++ b/jwt/__init__.py @@ -26,7 +26,7 @@ from .exceptions import ( ) from .jwks_client import PyJWKClient -__version__ = "2.5.0" +__version__ = "2.6.0" __title__ = "PyJWT" __description__ = "JSON Web Token implementation in Python" -- cgit v1.2.1