From 469044684a15942b2a9b26cdb8ad9b92747a6609 Mon Sep 17 00:00:00 2001 From: Serhii Buniak Date: Thu, 28 Oct 2021 14:27:50 +0300 Subject: [PATCH] Bump version, 0.2.1 -> 0.2.2, update README --- CHANGELOG.md | 3 +++ README.md | 1 + okta_jwt_verifier/__init__.py | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd0c3ec..a821062 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # OKTA JWT Verifier Changelog +## v0.2.2 +- Remove deprecation warning from IDTokenVerifier, add missing fix in v0.2.1 + ## v0.2.1 - Fix passing timeout parameter to cached session, issue #22 - Fix verify_expiration method, issue #24 diff --git a/README.md b/README.md index e398a09..d0e344e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ [](https://devforum.okta.com/) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Support](https://img.shields.io/badge/support-Developer%20Forum-blue.svg)](https://devforum.okta.com/) +[![PyPI](https://img.shields.io/pypi/v/okta-jwt-verifier)](https://pypi.org/project/okta-jwt-verifier/) [![Code Style](https://img.shields.io/badge/Code%20Style-flake8-informational.svg)](https://flake8.pycqa.org) # Okta JWT Verifier for Python diff --git a/okta_jwt_verifier/__init__.py b/okta_jwt_verifier/__init__.py index 79ecd11..ab53844 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.1' +__version__ = '0.2.2' from .jwt_verifier import BaseJWTVerifier, JWTVerifier, AccessTokenVerifier, IDTokenVerifier # noqa from .jwt_utils import JWTUtils # noqa