Skip to content

Commit

Permalink
Release 1.2.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
phobologic committed Feb 15, 2018
1 parent e6debaa commit 2a569c6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
## Upcoming/Master
## 1.2.0rc1 (2018-02-15)

The biggest change in this release has to do with how we build the graph
of dependencies between stacks. This is now a true DAG. As well, to
speed up performance we now walk the graph in a threaded mode, allowing
true parallelism and speeding up "wide" stack graphs considerably.

- assertRenderedBlueprint always dumps current results [GH-528]
- stacker now builds a DAG internally [GH-523]
- The `--stacks` flag now automatically builds dependencies of the given stack [GH-523]
- an unecessary DescribeStacks network call was removed [GH-529]
- support stack json/yaml templates [GH-530]
- `stacker {build,destroy}` now executes stacks in parallel. Parallelism can be controled with a `-j` flag. [GH-531]
- logging output has been simplified and no longer uses ANSI escape sequences to clear the screen [GH-532]
- logging output is now colorized in `--interactive` mode if the terminal has a TTY [GH-532]
- `stacker {build,destroy}` now executes stacks in parallel. Parallelism can be controled with a `-j` flag. [GH-531]


## 1.1.4 (2018-01-26)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from setuptools import setup, find_packages

VERSION = "1.1.4"
VERSION = "1.2.0rc1"

src_dir = os.path.dirname(__file__)

Expand Down
2 changes: 1 addition & 1 deletion stacker/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.4"
__version__ = "1.2.0rc1"

0 comments on commit 2a569c6

Please sign in to comment.