summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2022-10-19 21:08:12 -0400
committerGitHub <noreply@github.com>2022-10-19 21:08:12 -0400
commit7665aa625506a11bae50b56d3e04413a3dc6fdf8 (patch)
tree17e1eb92c514485ded4a26e2d7006b3886cdd62b
parentd81c9fa03283dc00ed28f1103fa8e78fb6f3f8cc (diff)
downloadpyjwt-7665aa625506a11bae50b56d3e04413a3dc6fdf8.tar.gz
Bump version to 2.6.0 (#813)2.6.0
Co-authored-by: José Padilla <jpadilla@users.noreply.github.com>
-rw-r--r--CHANGELOG.rst18
-rw-r--r--jwt/__init__.py2
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 <https://semver.org/>`__.
-`Unreleased <https://github.com/jpadilla/pyjwt/compare/2.5.0...HEAD>`__
+`Unreleased <https://github.com/jpadilla/pyjwt/compare/2.6.0...HEAD>`__
-----------------------------------------------------------------------
Changed
@@ -13,7 +13,23 @@ Changed
Fixed
~~~~~
+Added
+~~~~~
+
+`v2.6.0 <https://github.com/jpadilla/pyjwt/compare/2.5.0...2.6.0>`__
+-----------------------------------------------------------------------
+
+Changed
+~~~~~~~
+
+- bump up cryptography >= 3.4.0 by @jpadilla in `#807 <https://github.com/jpadilla/pyjwt/pull/807>`_
+- Remove `types-cryptography` from `crypto` extra by @lautat in `#805 <https://github.com/jpadilla/pyjwt/pull/805>`_
+
+Fixed
+~~~~~
+
- Invalidate token on the exact second the token expires `#797 <https://github.com/jpadilla/pyjwt/pull/797>`_
+- fix: version 2.5.0 heading typo by @c0state in `#803 <https://github.com/jpadilla/pyjwt/pull/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"