Skip to content

Commit

Permalink
Release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
markpeek committed Oct 21, 2017
1 parent ebadab4 commit cd3a996
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 2.0.1 (2017-10-21)
- Allow s3.Bucket AccessControl to be an AWSHelperFn
- Add AWS::ElasticLoadBalancingV2::ListenerCertificate
- Add serverless FunctionName and change how Tags are implemented
- Make AdjustmentType an optional property of ScalingPolicy as it is not used/supported for target (#849)
- Add maintenance window for SSM (#851)
- Add Tags, Tracing, KmsKeyArn, DLQ to serverless(SAM) (#853)
- Add new AWS::SSM resources (#854)
- EC2 NoDevice should be type boolean not dict (#858)
- Fixes RecordColumns cardinality for InputSchema and ReferenceSchema (#859)
- Make AWS::Batch::JobQueue::JobQueueName optional (#860)
- Fixes ApplicationOutput/Output cardinality (#863)

## 2.0.0 (2017-10-07)
- Note: the s3.Bucket change (#844) *may* cause a breaking change for non-named arguments.
- Add DefinitionBody to serverless API (#822)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def readme():

setup(
name='troposphere',
version='2.0.0',
version='2.0.1',
description="AWS CloudFormation creation library",
long_description=readme(),
author="Mark Peek",
Expand Down
2 changes: 1 addition & 1 deletion troposphere/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from . import validators

__version__ = "2.0.0"
__version__ = "2.0.1"

# constants for DeletionPolicy
Delete = 'Delete'
Expand Down

0 comments on commit cd3a996

Please sign in to comment.