From d0dcf51c010b64811db01379c9afa5a7b961e373 Mon Sep 17 00:00:00 2001 From: Michael Barrett Date: Tue, 28 Aug 2018 11:44:06 -0700 Subject: [PATCH] Release 1.4.1 --- CHANGELOG.md | 18 +++++++++++++++++- README.rst | 2 +- setup.py | 2 +- stacker/__init__.py | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab03ca505..f7ea2f23f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.rst b/README.rst index 3f7be2972..87c5f8e4e 100644 --- a/README.rst +++ b/README.rst @@ -46,7 +46,7 @@ Requirements ============ * Python 2.7 -* Python 3.5+(evaluation purpose only) +* Python 3.5+ Stacker Command =============== diff --git a/setup.py b/setup.py index ca0eac0dc..c65398c7c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages -VERSION = "1.4.0" +VERSION = "1.4.1" src_dir = os.path.dirname(__file__) diff --git a/stacker/__init__.py b/stacker/__init__.py index 8a16833a2..c93dd60fe 100644 --- a/stacker/__init__.py +++ b/stacker/__init__.py @@ -2,4 +2,4 @@ from __future__ import division from __future__ import absolute_import -__version__ = "1.4.0" +__version__ = "1.4.1"