Skip to content

Commit e2e7b23

Browse files
committed
Release 1.7.0
1 parent 97d5206 commit e2e7b23

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

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

3+
## 1.7.0 (2019-04-07)
4+
5+
- Additional ECS unit tests [GH-696]
6+
- Keypair unit tests [GH-700]
7+
- Jinja2 templates in plain cloudformation templates [GH-701]
8+
- Custom log output formats [GH-705]
9+
- Python 3.7 unit tests in CircleCI [GH-711]
10+
- Upload blueprint templates with bucket-owner-full-control ACL [GH-713]
11+
- Change test runner from nose to py.test [GH-714]
12+
- support for importing a local public key file with the keypair hook [GH-715]
13+
- support for storing private keys in SSM parameter store with the keypair hook [GH-715]
14+
315
## 1.6.0 (2019-01-21)
416

517
- New lookup format/syntax, making it more generic [GH-665]

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.6.0"
4+
VERSION = "1.7.0"
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.6.0"
5+
__version__ = "1.7.0"

0 commit comments

Comments
 (0)