From 337bbc21efaebcc7ce086a6a429c55748d1b6711 Mon Sep 17 00:00:00 2001 From: Michael Barrett Date: Sun, 7 Apr 2019 18:20:30 -0700 Subject: [PATCH] Release 1.7.0 --- CHANGELOG.md | 12 ++++++++++++ setup.py | 2 +- stacker/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e48fc3199..0024c839d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ ## Upcoming release +## 1.7.0 (2019-04-07) + +- Additional ECS unit tests [GH-696] +- Keypair unit tests [GH-700] +- Jinja2 templates in plain cloudformation templates [GH-701] +- Custom log output formats [GH-705] +- Python 3.7 unit tests in CircleCI [GH-711] +- Upload blueprint templates with bucket-owner-full-control ACL [GH-713] +- Change test runner from nose to py.test [GH-714] +- support for importing a local public key file with the keypair hook [GH-715] +- support for storing private keys in SSM parameter store with the keypair hook [GH-715] + ## 1.6.0 (2019-01-21) - New lookup format/syntax, making it more generic [GH-665] diff --git a/setup.py b/setup.py index 8aae81862..31d3e480f 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import os from setuptools import setup, find_packages -VERSION = "1.6.0" +VERSION = "1.7.0" src_dir = os.path.dirname(__file__) diff --git a/stacker/__init__.py b/stacker/__init__.py index 213a08f64..f55f1a97f 100644 --- a/stacker/__init__.py +++ b/stacker/__init__.py @@ -2,4 +2,4 @@ from __future__ import division from __future__ import absolute_import -__version__ = "1.6.0" +__version__ = "1.7.0"