summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2021-01-12 08:07:14 -0500
committerJosé Padilla <jpadilla@webapplicate.com>2021-01-12 08:07:14 -0500
commit911126f8dc94c32e1ea52c1d5ded53fba9512c69 (patch)
tree6ce18860fd0d9be52a0de591933f21e430780d78
parent9dca8eaa0ec43bcf54ac645872078ecdb0ca8d96 (diff)
downloadpyjwt-version-2.0.1.tar.gz
Bump up version to 2.0.1version-2.0.1
-rw-r--r--CHANGELOG.rst15
-rw-r--r--jwt/__init__.py2
2 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 2107438..4712e2e 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -10,12 +10,25 @@ This project adheres to `Semantic Versioning <https://semver.org/>`__.
Changed
~~~~~~~
+Fixed
+~~~~~
+
+Added
+~~~~~
+
+`v2.0.1 <https://github.com/jpadilla/pyjwt/compare/2.0.0...2.0.1>`__
+--------------------------------------------------------------------
+
+Changed
+~~~~~~~
+
- Rename CHANGELOG.md to CHANGELOG.rst and include in docs `#597 <https://github.com/jpadilla/pyjwt/pull/597>`__
-- Fix `from_jwk()` for all algorithms `#598 <https://github.com/jpadilla/pyjwt/pull/598>`__
Fixed
~~~~~
+- Fix `from_jwk()` for all algorithms `#598 <https://github.com/jpadilla/pyjwt/pull/598>`__
+
Added
~~~~~
diff --git a/jwt/__init__.py b/jwt/__init__.py
index 8259fa7..b7b3367 100644
--- a/jwt/__init__.py
+++ b/jwt/__init__.py
@@ -23,7 +23,7 @@ from .exceptions import (
)
from .jwks_client import PyJWKClient
-__version__ = "2.0.0"
+__version__ = "2.0.1"
__title__ = "PyJWT"
__description__ = "JSON Web Token implementation in Python"