From 89b47430ef633f689802752ee49eb5c36720070f Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 8 Jul 2023 10:57:01 +0000 Subject: [PATCH] 1.4.1 Automatically generated by python-semantic-release --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- src/flask_cognito_lib/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61038dd..af1bc50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ +## v1.4.1 (2023-07-08) +### Fix + +* Replace use of deprecated app context stack ([`692f312`](https://github.com/mblackgeo/flask-cognito-lib/commit/692f312e5bb8f34080d44d2aed30ff43926a62b2)) + ## v1.4.0 (2023-07-08) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 8dca12b..c1cf71e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "flask_cognito_lib" -version = "1.4.0" +version = "1.4.1" description = "A Flask extension that supports protecting routes with AWS Cognito following OAuth 2.1 best practices" license = "MIT" authors = ["mblackgeo <18327836+mblackgeo@users.noreply.github.com>"] diff --git a/src/flask_cognito_lib/__init__.py b/src/flask_cognito_lib/__init__.py index 2c7daa0..59d1e3b 100644 --- a/src/flask_cognito_lib/__init__.py +++ b/src/flask_cognito_lib/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.4.0" +__version__ = "1.4.1" from .plugin import CognitoAuth