Skip to content

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phobologic committed Aug 6, 2018
1 parent 103e143 commit ca228b3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
21 changes: 17 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
## Upcoming/Master

- Add JSON and YAML codecs to file lookup
- Improve config. validation by only allowing unrecognized keys at the top level
## Upcoming Release

## 1.4.0 (2018-08-05)

- YAML & JSON codecs for `file` lookup [GH-537]
- Arbitrary `command` hook [GH-565]
- Fix datetime is not JSON serializable error [GH-591]
- Run dump and outline actions offline [GH-594]
- Helper Makefile for functional tests [GH-597]
- Python3 support!!! [GH-600]
- YAML blueprint testing framework [GH-606]
- new `add_output` helper on Blueprint [GH-611]
- Include lookup contents when lookups fail [GH-614]
- Fix issue with using previous value for parameters [GH-615]
- Stricter config parsing - only allow unrecognized config variables at the top-level [GH-623]
- Documentation for the `default` lookup [GH-636]
- Allow configs without stacks [GH-640]

## 1.3.0 (2018-05-03)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages


VERSION = "1.3.0"
VERSION = "1.4.0"

src_dir = os.path.dirname(__file__)

Expand Down
3 changes: 2 additions & 1 deletion stacker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
__version__ = "1.3.0"

__version__ = "1.4.0"

0 comments on commit ca228b3

Please sign in to comment.