Skip to content

Commit 5874669

Browse files
committed
Release 1.7.1
1 parent 06a4bee commit 5874669

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
## Upcoming release
2-
- Fixing AMI lookup Key error on 'Name'
32

3+
## 1.7.1 (2020-08-17)
4+
- Fixing AMI lookup Key error on 'Name'
5+
- hooks: lambda: allow uploading pre-built payloads [GH-#564]
46
- Ensure that base64 lookup codec encodes the bytes object as a string [GH-742]
57
- Use CloudFormation Change Sets for `stacker diff`
8+
- Locked stacks still have requirements [GH-746]
9+
- change diff to use CFN change sets instead of comparing template dicts [GH-744]
10+
- Add YAML environment file support [GH-740]
11+
- fix `stack.set_outputs` not being called by diff if stack did not change [GH-754]
12+
- Fix python 2.7/3.5 dependency issue
13+
- add cf notification arns [GH-756]
614

715
## 1.7.0 (2019-04-07)
816

setup.py

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

4-
VERSION = "1.7.0"
4+
VERSION = "1.7.1"
55

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

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.7.0"
5+
__version__ = "1.7.1"

0 commit comments

Comments
 (0)