From 79c23d7d9d32364be8f94680d8eda7135c3a15d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Wed, 28 Apr 2021 07:59:15 -0400 Subject: Bump up version to v2.1.0 (#653) --- CHANGELOG.rst | 14 +++++++++++++- jwt/__init__.py | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 25e8dca..b138569 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,12 +4,24 @@ Changelog All notable changes to this project will be documented in this file. This project adheres to `Semantic Versioning `__. -`Unreleased `__ +`Unreleased `__ ----------------------------------------------------------------------- Changed ~~~~~~~ +Fixed +~~~~~ + +Added +~~~~~ + +`v2.1.0 `__ +-------------------------------------------------------------------- + +Changed +~~~~~~~ + - Allow claims validation without making JWT signature validation mandatory. `#608 `__ Fixed diff --git a/jwt/__init__.py b/jwt/__init__.py index 89023f3..9fb8e31 100644 --- a/jwt/__init__.py +++ b/jwt/__init__.py @@ -25,7 +25,7 @@ from .exceptions import ( ) from .jwks_client import PyJWKClient -__version__ = "2.0.1" +__version__ = "2.1.0" __title__ = "PyJWT" __description__ = "JSON Web Token implementation in Python" -- cgit v1.2.1