File tree 4 files changed +20
-4
lines changed
4 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 1
- ## Upcoming Release
1
+ ## Upcoming release
2
+
3
+ ## 1.4.1 (2018-08-28)
4
+
5
+ This is a minor bugfix release for 1.4.0, no major feature updates.
6
+
7
+ As of this release python 3.5+ support is no longer considered experimental, and should be stable.
8
+
9
+ Special thanks to @troyready for this release, I think most of these PRs were his :)
10
+
11
+ - allow raw cfn templates to be loaded from remote package\_ sources [ GH-638 ]
12
+ - Add missing config keys to s3 package source model [ GH-642 ]
13
+ - Account for UsePreviousValue parameters in diff [ GH-644 ]
14
+ - fix file lookup documented and actual return types [ GH-646 ]
15
+ - Creates a memoized provider builder for AWS [ GH-648 ]
16
+ - update git ref to explicitly return string (fix py3 bytes error) [ GH-649 ]
17
+ - Lock botocore/boto to versions that work with moto [ GH-651 ]
2
18
3
19
## 1.4.0 (2018-08-05)
4
20
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Requirements
46
46
============
47
47
48
48
* Python 2.7
49
- * Python 3.5+(evaluation purpose only)
49
+ * Python 3.5+
50
50
51
51
Stacker Command
52
52
===============
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.0 "
5
+ VERSION = "1.4.1 "
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.0 "
5
+ __version__ = "1.4.1 "
You can’t perform that action at this time.
0 commit comments