File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
## Upcoming release
2
2
3
+ ## 1.5.0 (2018-10-14)
4
+
5
+ The big feature in this release is the introduction of "targets" which act as
6
+ sort of "virtual nodes" in the graph. It provides a nice way to logically group
7
+ stacks.
8
+
9
+ - Add support for "targets" [ GH-572 ]
10
+ - Fix non-interactive changeset updates w/ stack policies [ GH-657 ]
11
+ - Fix interactive_update_stack calls with empty string parameters [ GH-658 ]
12
+ - Fix KMS unicode lookup in python 2 [ GH-659 ]
13
+ - Locked stacks have no dependencies [ GH-661 ]
14
+ - Set default profile earlier [ GH-662 ]
15
+ - Get rid of recursion for tail retries and extend retry/timeout [ GH-663 ]
16
+
3
17
## 1.4.1 (2018-08-28)
4
18
5
19
This is a minor bugfix release for 1.4.0, no major feature updates.
Original file line number Diff line number Diff line change 2
2
from setuptools import setup , find_packages
3
3
4
4
5
- VERSION = "1.4.1 "
5
+ VERSION = "1.5.0 "
6
6
7
7
src_dir = os .path .dirname (__file__ )
8
8
Original file line number Diff line number Diff line change 2
2
from __future__ import division
3
3
from __future__ import absolute_import
4
4
5
- __version__ = "1.4.1 "
5
+ __version__ = "1.5.0 "
You can’t perform that action at this time.
0 commit comments