Skip to content

Commit

Permalink
Release 0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
phobologic committed Dec 3, 2015
1 parent ae87e44 commit ecbcf33
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## 0.5.4 (???)

- Add support for List<AWS::EC2::*> parameters
## 0.5.4 (2015-12-03)

- Fix memory leak issue (GH-111) [GH-114]
- Add enabled flag to stacks [GH-115]
- Add support for List<AWS::EC2::*> parameters [GH-117]
- Add eu-west-1 support for empire [GH-116]
- Move get\_fqn to a function, add tests [GH-119]
- Add new postgres versions (9.4.4, 9.4.5) [GH-121]
- Handle blank parameter values [GH-120]

## 0.5.3 (2015-11-03)

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
from setuptools import setup, find_packages
import glob

VERSION = '0.5.4'

src_dir = os.path.dirname(__file__)

install_requires = [
Expand All @@ -26,7 +28,7 @@ def read(filename):
if __name__ == '__main__':
setup(
name='stacker',
version='0.5.3',
version=VERSION,
author='Michael Barrett',
author_email='[email protected]',
license="New BSD license",
Expand Down
2 changes: 1 addition & 1 deletion stacker/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.5.3'
__version__ = '0.5.4'

0 comments on commit ecbcf33

Please sign in to comment.