Skip to content

Commit

Permalink
Release 1.5.0 (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
phobologic committed Oct 14, 2018
1 parent 3038512 commit 825003e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages


VERSION = "1.4.1"
VERSION = "1.5.0"

src_dir = os.path.dirname(__file__)

Expand Down
2 changes: 1 addition & 1 deletion stacker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from __future__ import division
from __future__ import absolute_import

__version__ = "1.4.1"
__version__ = "1.5.0"

0 comments on commit 825003e

Please sign in to comment.