Skip to content

Commit d0dcf51

Browse files
committed
Release 1.4.1
1 parent c002087 commit d0dcf51

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
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]
218

319
## 1.4.0 (2018-08-05)
420

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Requirements
4646
============
4747

4848
* Python 2.7
49-
* Python 3.5+(evaluation purpose only)
49+
* Python 3.5+
5050

5151
Stacker Command
5252
===============

setup.py

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

44

5-
VERSION = "1.4.0"
5+
VERSION = "1.4.1"
66

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

stacker/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from __future__ import division
33
from __future__ import absolute_import
44

5-
__version__ = "1.4.0"
5+
__version__ = "1.4.1"

0 commit comments

Comments
 (0)