diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fb6cb77f..7d4c4849 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,10 +4,19 @@ Changelog All notable changes to this project will be documented in this file. This project adheres to `Semantic Versioning `__. -`Unreleased `__ +`Unreleased `__ ------------------------------------------------------------------------ +`v2.10.1 `__ +----------------------------------------------------------------------- + + +Fixed +~~~~~ + +- Prevent partial matching of `iss` claim by @fabianbadoi in `GHSA-75c5-xw7c-p5pm `__ + `v2.10.0 `__ ----------------------------------------------------------------------- diff --git a/jwt/__init__.py b/jwt/__init__.py index 9d4b6744..457a4e35 100644 --- a/jwt/__init__.py +++ b/jwt/__init__.py @@ -27,7 +27,7 @@ ) from .jwks_client import PyJWKClient -__version__ = "2.10.0" +__version__ = "2.10.1" __title__ = "PyJWT" __description__ = "JSON Web Token implementation in Python"