File tree 3 files changed +18
-2
lines changed
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
17
## 1.2.0rc2 (2018-02-27)
2
18
3
19
- Fix parameter handling for diffs [ GH-540 ]
Original file line number Diff line number Diff line change 1
1
import os
2
2
from setuptools import setup , find_packages
3
3
4
- VERSION = "1.2.0rc2 "
4
+ VERSION = "1.2.0 "
5
5
6
6
src_dir = os .path .dirname (__file__ )
7
7
Original file line number Diff line number Diff line change 1
- __version__ = "1.2.0rc2 "
1
+ __version__ = "1.2.0 "
You can’t perform that action at this time.
0 commit comments