From cfa01da5774e3df1774d75bd92c225229b4d48cb Mon Sep 17 00:00:00 2001 From: Michael Barrett Date: Sun, 14 Oct 2018 14:18:12 -0700 Subject: [PATCH] Release 1.5.0 --- CHANGELOG.md | 14 ++++++++++++++ setup.py | 2 +- stacker/__init__.py | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7ea2f23f..380466a1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ ## Upcoming release +## 1.5.0 (2018-10-14) + +The big feature in this release is the introduction of "targets" which act as +sort of "virtual nodes" in the graph. It provides a nice way to logically group +stacks. + +- Add support for "targets" [GH-572] +- Fix non-interactive changeset updates w/ stack policies [GH-657] +- Fix interactive_update_stack calls with empty string parameters [GH-658] +- Fix KMS unicode lookup in python 2 [GH-659] +- Locked stacks have no dependencies [GH-661] +- Set default profile earlier [GH-662] +- Get rid of recursion for tail retries and extend retry/timeout [GH-663] + ## 1.4.1 (2018-08-28) This is a minor bugfix release for 1.4.0, no major feature updates. diff --git a/setup.py b/setup.py index 2be72566d..1ed5d834b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages -VERSION = "1.4.1" +VERSION = "1.5.0" src_dir = os.path.dirname(__file__) diff --git a/stacker/__init__.py b/stacker/__init__.py index c93dd60fe..aa813611b 100644 --- a/stacker/__init__.py +++ b/stacker/__init__.py @@ -2,4 +2,4 @@ from __future__ import division from __future__ import absolute_import -__version__ = "1.4.1" +__version__ = "1.5.0"