From e19280425a18b72e4a6135b10bb0adb30548931f Mon Sep 17 00:00:00 2001 From: BinoyOza-okta Date: Fri, 30 Jan 2026 11:50:40 +0530 Subject: [PATCH] - Added version update information to CHANGELOG.md. - Updated version over __init__.py and pyproject.toml. --- CHANGELOG.md | 3 +++ okta_jwt_verifier/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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"