Skip to content

Commit

Permalink
Release 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phobologic committed Aug 17, 2020
1 parent 06a4bee commit 5874669
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
## Upcoming release
- Fixing AMI lookup Key error on 'Name'

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

## 1.7.0 (2019-04-07)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from setuptools import setup, find_packages

VERSION = "1.7.0"
VERSION = "1.7.1"

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

0 comments on commit 5874669

Please sign in to comment.