Add 0.6.0 CHANGES
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Stefan Reimer 2019-06-27 13:34:41 +00:00
parent 9fc7a550db
commit 31ea1665af
3 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 0.6.0
- Implemented Piped mode again
Allows all stack references to be supplied via injected parameters
Tries to automatically resolve injected paramteres by inspecting matching outputs from othe running stacks at provision time
- minor bugfixing
## 0.5.2
- Remove tox dependency during build
- Introduce drone.io support

View File

@ -2,7 +2,7 @@ import logging
__author__ = "Stefan Reimer"
__email__ = "stefan@zero-downtimet.net"
__version__ = "0.5.2"
__version__ = "0.6.0"
# Set up logging to ``/dev/null`` like a library is supposed to.

View File

@ -297,7 +297,7 @@ class Stack(object):
logger.info('{} {} Parameter {}={}'.format(self.region, self.stackname, p, value))
else:
# If we have a Default defined in the CFN skip, as AWS will use it
if not 'Default' in self.cfn_data['Parameters'][p]:
if 'Default' not in self.cfn_data['Parameters'][p]:
_errors.append(p)
if _errors: