Bug fix release

This commit is contained in:
Stefan Reimer 2020-05-01 14:06:53 +01:00
parent 3fd4a9640a
commit 7810018f25
3 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
# Changelog
## 0.8.2
- Bug fix release to allow empty stack configs again
## 0.8.1
- Work around for bug in Go AWS SDK to pick up cli credentials, see https://github.com/aws/aws-sdk-go/issues/934

View File

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

View File

@ -240,7 +240,7 @@ def _sops_loader(path):
config_raw = f.read()
data = yaml.safe_load(config_raw)
if 'sops' in data:
if data and 'sops' in data:
try:
result = subprocess.run([
'sops',