diff --git a/CHANGELOG.md b/CHANGELOG.md index f2a5e88..b136576 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ +## v1.6.0 (2023-10-30) +### Feature + +* Add support for setting domain and samesite on the cookie ([`46e69c8`](https://github.com/mblackgeo/flask-cognito-lib/commit/46e69c8792c81b251c211b51979f0e0e4105a99a)) + +### Documentation + +* Update with new configuration options for cookie domain/samesite ([`90fd6ac`](https://github.com/mblackgeo/flask-cognito-lib/commit/90fd6ace96a0c0fee275ec2f1f8b08d0e8e2d3e7)) +* Remove misleading text in example in README ([`9faafc0`](https://github.com/mblackgeo/flask-cognito-lib/commit/9faafc0bf12bcfc7b0e9fc1cd03ef4944289fb22)) + ## v1.5.0 (2023-07-12) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 2c53cd1..fdb4a35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "flask_cognito_lib" -version = "1.5.0" +version = "1.6.0" 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 5697b1c..04cd0f6 100644 --- a/src/flask_cognito_lib/__init__.py +++ b/src/flask_cognito_lib/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.5.0" +__version__ = "1.6.0" from .plugin import CognitoAuth