summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2021-04-28 07:59:15 -0400
committerGitHub <noreply@github.com>2021-04-28 07:59:15 -0400
commit79c23d7d9d32364be8f94680d8eda7135c3a15d5 (patch)
treef576c065e20422361792a09b87951eb3c021347c
parentc7f9ac57021021aecc417ffb580c6799ad1ead84 (diff)
downloadpyjwt-79c23d7d9d32364be8f94680d8eda7135c3a15d5.tar.gz
Bump up version to v2.1.0 (#653)2.1.0
-rw-r--r--CHANGELOG.rst14
-rw-r--r--jwt/__init__.py2
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 <https://semver.org/>`__.
-`Unreleased <https://github.com/jpadilla/pyjwt/compare/2.0.0...HEAD>`__
+`Unreleased <https://github.com/jpadilla/pyjwt/compare/2.1.0...HEAD>`__
-----------------------------------------------------------------------
Changed
~~~~~~~
+Fixed
+~~~~~
+
+Added
+~~~~~
+
+`v2.1.0 <https://github.com/jpadilla/pyjwt/compare/2.0.1...2.1.0>`__
+--------------------------------------------------------------------
+
+Changed
+~~~~~~~
+
- Allow claims validation without making JWT signature validation mandatory. `#608 <https://github.com/jpadilla/pyjwt/pull/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"