diff --git a/cottonformation/_version.py b/cottonformation/_version.py index 1f7d7bc..6968c17 100644 --- a/cottonformation/_version.py +++ b/cottonformation/_version.py @@ -1,4 +1,4 @@ -__version__ = "1.1.1" +__version__ = "1.1.2" if __name__ == "__main__": # pragma: no cover print(__version__) diff --git a/cottonformation/core/deploy.py b/cottonformation/core/deploy.py deleted file mode 100644 index 633f866..0000000 --- a/cottonformation/core/deploy.py +++ /dev/null @@ -1,2 +0,0 @@ -# -*- coding: utf-8 -*- - diff --git a/cottonformation/core/env.py b/cottonformation/core/env.py index 68160aa..c9108c7 100644 --- a/cottonformation/core/env.py +++ b/cottonformation/core/env.py @@ -311,7 +311,7 @@ def deploy( verbose=verbose, ) - deploy_stack( + return deploy_stack( bsm=self.bsm, stack_name=stack_name, template=template.to_json(), diff --git a/release-history.rst b/release-history.rst index de11ac6..c984d6f 100644 --- a/release-history.rst +++ b/release-history.rst @@ -17,6 +17,28 @@ Backlog **Miscellaneous** +1.1.2 (2023-03-16) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +**Features and Improvements** + +- :meth`~cottonformation.core.env.Env.deploy` now return a ``DeployStackResponse`` object + +**Miscellaneous** + +- depends on ``aws-cloudformation>=1.3.2`` + + +1.1.1 (2023-03-10) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +**Features and Improvements** + +- support full list of boto3 ``create_stack`` and ``update_stack`` arguments + +**Miscellaneous** + +- depends on ``aws-cloudformation>=1.3.1`` + + 1.0.1 (2022-12-08) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ **Features and Improvements** diff --git a/requirements.txt b/requirements.txt index a95a5b3..7e61d4f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs boto_session_manager>=1.3.1 -aws_cloudformation>=1.3.1 +aws_cloudformation>=1.3.2 toposort>=1.6 cfn_flip>=1.0.0