Skip to content

Commit 53d480c

Browse files
committed
Release 1.6.0
1 parent 1dc6de8 commit 53d480c

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

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

3+
## 1.6.0 (2019-01-21)
4+
5+
- New lookup format/syntax, making it more generic [GH-665]
6+
- Allow lowercase y/Y when prompted [GH-674]
7+
- Local package sources [GH-677]
8+
- Add `in_progress` option to stack config [GH-678]
9+
- Use default ACL for uploaded lambda code [GH-682]
10+
- Display rollback reason after error [GH-687]
11+
- ssm parameter types [GH-692]
12+
313
## 1.5.0 (2018-10-14)
414

515
The big feature in this release is the introduction of "targets" which act as

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.5.0"
5+
VERSION = "1.6.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.5.0"
5+
__version__ = "1.6.0"

0 commit comments

Comments
 (0)