summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"