diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bfcbdf..194e51c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # OKTA JWT Verifier Changelog +## v0.4.0 +- Added support to clear cache if http client fails + ## v0.3.0 - Updated version of aiohttp to 3.12.14 diff --git a/okta_jwt_verifier/__init__.py b/okta_jwt_verifier/__init__.py index 1fdc919..d895074 100644 --- a/okta_jwt_verifier/__init__.py +++ b/okta_jwt_verifier/__init__.py @@ -2,7 +2,7 @@ Allow to verify JWT locally """ -__version__ = '0.3.0' +__version__ = '0.4.0' from .jwt_verifier import BaseJWTVerifier, JWTVerifier, AccessTokenVerifier, IDTokenVerifier # noqa from .jwt_utils import JWTUtils # noqa diff --git a/pyproject.toml b/pyproject.toml index 0613603..a287e1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "okta-jwt-verifier" -version = "0.3.0" +version = "0.4.0" description = "A Python library for OKTA JWT tokens validation" authors = ["Okta"] license = "Apache-2.0"