diff --git a/CHANGELOG.md b/CHANGELOG.md index 77872d3..f5ac624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ +## v1.1.5 (2022-03-30) + + ## v1.1.4 (2022-03-30) ### Documentation * Add placeholder for semantic in the Changelog ([`9549891`](https://github.com/mblackgeo/flask-cognito-lib/commit/9549891f0be93b8993b3c7643de8280de2d4f742)) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 47ea258..f33c22a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "flask_cognito_lib" -version = "1.1.4" +version = "1.1.5" 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 ad17aff..40f6848 100644 --- a/src/flask_cognito_lib/__init__.py +++ b/src/flask_cognito_lib/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.1.4" +__version__ = "1.1.5" from .plugin import CognitoAuth