Skip to content

Commit

Permalink
Release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phobologic committed Aug 28, 2018
1 parent c002087 commit d0dcf51
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
## Upcoming Release
## Upcoming release

## 1.4.1 (2018-08-28)

This is a minor bugfix release for 1.4.0, no major feature updates.

As of this release python 3.5+ support is no longer considered experimental, and should be stable.

Special thanks to @troyready for this release, I think most of these PRs were his :)

- allow raw cfn templates to be loaded from remote package\_sources [GH-638]
- Add missing config keys to s3 package source model [GH-642]
- Account for UsePreviousValue parameters in diff [GH-644]
- fix file lookup documented and actual return types [GH-646]
- Creates a memoized provider builder for AWS [GH-648]
- update git ref to explicitly return string (fix py3 bytes error) [GH-649]
- Lock botocore/boto to versions that work with moto [GH-651]

## 1.4.0 (2018-08-05)

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Requirements
============

* Python 2.7
* Python 3.5+(evaluation purpose only)
* Python 3.5+

Stacker Command
===============
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages


VERSION = "1.4.0"
VERSION = "1.4.1"

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
Expand Up @@ -2,4 +2,4 @@
from __future__ import division
from __future__ import absolute_import

__version__ = "1.4.0"
__version__ = "1.4.1"

0 comments on commit d0dcf51

Please sign in to comment.