Skip to content

Commit f19e22d

Browse files
committed
Release 1.2.0
1 parent 6b7fec6 commit f19e22d

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 1.2.0 (2018-03-01)
2+
3+
The biggest change in this release has to do with how we build the graph
4+
of dependencies between stacks. This is now a true DAG. As well, to
5+
speed up performance we now walk the graph in a threaded mode, allowing
6+
true parallelism and speeding up "wide" stack graphs considerably.
7+
8+
- assertRenderedBlueprint always dumps current results [GH-528]
9+
- The `--stacks` flag now automatically builds dependencies of the given stack [GH-523]
10+
- an unecessary DescribeStacks network call was removed [GH-529]
11+
- support stack json/yaml templates [GH-530]
12+
- `stacker {build,destroy}` now executes stacks in parallel. Parallelism can be controled with a `-j` flag. [GH-531]
13+
- logging output has been simplified and no longer uses ANSI escape sequences to clear the screen [GH-532]
14+
- logging output is now colorized in `--interactive` mode if the terminal has a TTY [GH-532]
15+
- removed the upper bound on the boto3 dependency [GH-542]
16+
117
## 1.2.0rc2 (2018-02-27)
218

319
- Fix parameter handling for diffs [GH-540]

setup.py

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

4-
VERSION = "1.2.0rc2"
4+
VERSION = "1.2.0"
55

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

stacker/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.0rc2"
1+
__version__ = "1.2.0"

0 commit comments

Comments
 (0)