From d4b3e7a501c20249a2dbf9f9f3d8b0c799b1da9c Mon Sep 17 00:00:00 2001 From: Michael Barrett Date: Thu, 26 Jan 2017 09:23:01 -0800 Subject: [PATCH] Release 0.8.6 --- CHANGELOG.md | 8 ++++++++ setup.py | 2 +- stacker/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afcbf8596..f6d0aab98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.8.6 (2017-01-26) + +- Support destroying subset of stacks [GH-278] +- Update all hooks to use advanced results [GH-285] +- Use sys\_path for hooks and lookups [GH-286] +- Remove last of botocore conns [GH-287] +- Avoid dictionary sharing pollution [GH-293] + ## 0.8.5 (2016-11-28) - Allow `=` in lookup input [GH-251] diff --git a/setup.py b/setup.py index 844abd7de..eefe6fdbc 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import glob -VERSION = "0.8.5" +VERSION = "0.8.6" src_dir = os.path.dirname(__file__) diff --git a/stacker/__init__.py b/stacker/__init__.py index af46754d3..de77196f4 100644 --- a/stacker/__init__.py +++ b/stacker/__init__.py @@ -1 +1 @@ -__version__ = "0.8.5" +__version__ = "0.8.6"