From 986c5081b567809fdff887539d1795751c6ceb26 Mon Sep 17 00:00:00 2001 From: Mark Peek Date: Sat, 8 Oct 2016 15:58:24 -0700 Subject: [PATCH] Release 1.8.2 --- CHANGELOG.md | 3 ++- setup.py | 2 +- troposphere/__init__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60fdbdbd9..80af35ff2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## pending +## 1.8.2 (2016-10-08) - Add SpotPrice to SpotFleet LaunchSpecifications - Add new properties to ECS (Clustername to Cluster and Family to TaskDefinition) - Add Alias object to KMS (fixes #568) @@ -15,6 +15,7 @@ - Add AWS::CodeCommit::Repository (fixes #586) - Provide better type checking for values in from_dict (#587) - Allow HelperFn in UpdatePolicy for ASG (#588) +- Fixe from_dict case where you have a list of non BaseAWSObjects (#589) ## 1.8.1 (2016-09-12) - Add TargetGroupArn and fix ContainerPort (#549) diff --git a/setup.py b/setup.py index 2fa17d4eb..c0b75e81f 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='troposphere', - version='1.8.1', + version='1.8.2', description="AWS CloudFormation creation library", author="Mark Peek", author_email="mark@peek.org", diff --git a/troposphere/__init__.py b/troposphere/__init__.py index 845f63102..4607fbbd3 100644 --- a/troposphere/__init__.py +++ b/troposphere/__init__.py @@ -12,7 +12,7 @@ from . import validators -__version__ = "1.8.1" +__version__ = "1.8.2" # constants for DeletionPolicy Delete = 'Delete'