diff --git a/CHANGELOG.md b/CHANGELOG.md index a077ea045..a71196ae9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.6.0 (2016-01-07) + +- Support tailing cloudformation event stream when building/destroying stacks [GH-90] +- More customizable ASG userdata & options [GH-100] +- Deprecate 'blueprints' in favor of 'stacker\_blueprints' package [GH-125] +- Add KMS based encryption translator [GH-126] +- Fix typo in ASG customization [GH-127] +- Allow file:// prefix with KMS encryption translator [GH-128] +- No longer require a confirmation if the user passes the `--force` flag when destroying [GH-131] + ## 0.5.4 (2015-12-03) - Fix memory leak issue (GH-111) [GH-114] diff --git a/setup.py b/setup.py index ba128f8eb..eb5782038 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import glob -VERSION = '0.5.4' +VERSION = '0.6.0' src_dir = os.path.dirname(__file__) diff --git a/stacker/__init__.py b/stacker/__init__.py index 19283fe51..ef7eb44d9 100644 --- a/stacker/__init__.py +++ b/stacker/__init__.py @@ -1 +1 @@ -__version__ = '0.5.4' +__version__ = '0.6.0'