From 45582eb1d21a6cc9cfa608f626d8acbf0317f37f Mon Sep 17 00:00:00 2001 From: Mark Peek Date: Mon, 23 Oct 2017 21:49:40 -0700 Subject: [PATCH] Release 2.0.2 --- CHANGELOG.md | 3 +++ setup.py | 2 +- troposphere/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd431f36a..392ba06aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2.0.2 (2017-10-23) +- Set EC2 BlockDeviceMapping NoDevice property to type dict (#866) + ## 2.0.1 (2017-10-21) - Allow s3.Bucket AccessControl to be an AWSHelperFn - Add AWS::ElasticLoadBalancingV2::ListenerCertificate diff --git a/setup.py b/setup.py index da86c06ab..c5d28ba17 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def readme(): setup( name='troposphere', - version='2.0.1', + version='2.0.2', description="AWS CloudFormation creation library", long_description=readme(), author="Mark Peek", diff --git a/troposphere/__init__.py b/troposphere/__init__.py index b06b97aec..8cf82efba 100644 --- a/troposphere/__init__.py +++ b/troposphere/__init__.py @@ -12,7 +12,7 @@ from . import validators -__version__ = "2.0.1" +__version__ = "2.0.2" # constants for DeletionPolicy Delete = 'Delete'