Skip to content

Commit cfa01da

Browse files
committed
Release 1.5.0
1 parent 3038512 commit cfa01da

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
## Upcoming release
22

3+
## 1.5.0 (2018-10-14)
4+
5+
The big feature in this release is the introduction of "targets" which act as
6+
sort of "virtual nodes" in the graph. It provides a nice way to logically group
7+
stacks.
8+
9+
- Add support for "targets" [GH-572]
10+
- Fix non-interactive changeset updates w/ stack policies [GH-657]
11+
- Fix interactive_update_stack calls with empty string parameters [GH-658]
12+
- Fix KMS unicode lookup in python 2 [GH-659]
13+
- Locked stacks have no dependencies [GH-661]
14+
- Set default profile earlier [GH-662]
15+
- Get rid of recursion for tail retries and extend retry/timeout [GH-663]
16+
317
## 1.4.1 (2018-08-28)
418

519
This is a minor bugfix release for 1.4.0, no major feature updates.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup, find_packages
33

44

5-
VERSION = "1.4.1"
5+
VERSION = "1.5.0"
66

77
src_dir = os.path.dirname(__file__)
88

stacker/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from __future__ import division
33
from __future__ import absolute_import
44

5-
__version__ = "1.4.1"
5+
__version__ = "1.5.0"

0 commit comments

Comments
 (0)