Skip to content

Commit ca228b3

Browse files
committed
Release 1.4.0
1 parent 103e143 commit ca228b3

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

CHANGELOG.md

+17-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
1-
## Upcoming/Master
2-
3-
- Add JSON and YAML codecs to file lookup
4-
- Improve config. validation by only allowing unrecognized keys at the top level
1+
## Upcoming Release
2+
3+
## 1.4.0 (2018-08-05)
4+
5+
- YAML & JSON codecs for `file` lookup [GH-537]
6+
- Arbitrary `command` hook [GH-565]
7+
- Fix datetime is not JSON serializable error [GH-591]
8+
- Run dump and outline actions offline [GH-594]
9+
- Helper Makefile for functional tests [GH-597]
10+
- Python3 support!!! [GH-600]
11+
- YAML blueprint testing framework [GH-606]
12+
- new `add_output` helper on Blueprint [GH-611]
13+
- Include lookup contents when lookups fail [GH-614]
14+
- Fix issue with using previous value for parameters [GH-615]
15+
- Stricter config parsing - only allow unrecognized config variables at the top-level [GH-623]
16+
- Documentation for the `default` lookup [GH-636]
17+
- Allow configs without stacks [GH-640]
518

619
## 1.3.0 (2018-05-03)
720

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup, find_packages
33

44

5-
VERSION = "1.3.0"
5+
VERSION = "1.4.0"
66

77
src_dir = os.path.dirname(__file__)
88

stacker/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from __future__ import print_function
22
from __future__ import division
33
from __future__ import absolute_import
4-
__version__ = "1.3.0"
4+
5+
__version__ = "1.4.0"

0 commit comments

Comments
 (0)