diff --git a/CHANGELOG.md b/CHANGELOG.md index d25d57d..4bfcbdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # OKTA JWT Verifier Changelog +## v0.3.0 +- Updated version of aiohttp to 3.12.14 + ## v0.2.9 - Updated version of setuptools to 78.1.1 diff --git a/okta_jwt_verifier/__init__.py b/okta_jwt_verifier/__init__.py index 5744221..1fdc919 100644 --- a/okta_jwt_verifier/__init__.py +++ b/okta_jwt_verifier/__init__.py @@ -2,7 +2,7 @@ Allow to verify JWT locally """ -__version__ = '0.2.9' +__version__ = '0.3.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 1662c28..0613603 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "okta-jwt-verifier" -version = "0.2.9" +version = "0.3.0" description = "A Python library for OKTA JWT tokens validation" authors = ["Okta"] license = "Apache-2.0" diff --git a/requirements.txt b/requirements.txt index fcb5123..484fb4c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ requests>=2.31.0 pyjwt>=2.8.0 acachecontrol>=0.3.6 retry2 -aiohttp>=3.10.11 +aiohttp>=3.12.14 certifi>=2023.7.22 urllib3>=1.26.18 setuptools>=78.1.1