diff --git a/docs/changelog.rst b/docs/changelog.rst index 75aa772..d73ef05 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -12,6 +12,13 @@ Changelog .. module:: joserfc :noindex: +0.10.0 +------ + +**Released on May 13, 2024** + +- Change ``jwt.encode`` and ``jwt.decode`` to use JWS by default + 0.9.0 ----- diff --git a/src/joserfc/__init__.py b/src/joserfc/__init__.py index 743632e..8c6c2c9 100644 --- a/src/joserfc/__init__.py +++ b/src/joserfc/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.9.0" +__version__ = "0.10.0" __homepage__ = "https://jose.authlib.org/" __author__ = "Hsiaoming Yang " __license__ = "BSD-3-Clause"