diff --git a/CHANGELOG.md b/CHANGELOG.md index b44aaca0e..71621ccb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## 2.3.0 (2018-05-26) + +- Allow Refs to be hashable using their data (#1053) +- Add AWS::Budgets +- Add new AWS::ServiceCatalog resources +- Add Policy to ApiGateway::RestApi +- Add ServiceLinkedRoleARN to AutoScaling::AutoScalingGroup +- Add LaunchConfigurationName to AutoScaling::LaunchConfiguration +- Add Edition to DirectoryService::MicrosoftAD +- Add PointInTimeRecoverySpecification to DynamoDB::Table +- Add ServiceRegistries to ECS::Service +- Add HealthCheck to ECS::TaskDefinition ContainerDefinition +- Add EncryptionAtRestOptions to Elasticsearch::Domain +- Add MaxSessionDuration ti IAM::Role +- Add SplunkDestinationConfiguration to KinesisFirehose::DeliveryStream +- StartingPosition is no longer required in Lambda::EventSourceMapping +- Add DefaultValue to Logs::MetricFilter MetricTransformation +- Add OutputLocation to SSM::Association +- Add AutoScaling and EC2 LaunchTemplate support (#1038) +- Add LaunchTemplate to EC2::Instance +- Adding ECS Container Healthchecks tests (#1024) +- Rename ActionTypeID to ActionTypeId in CodePipeline + ## 2.2.2 (2018-05-23) - Allow up to 50:1 ratio for iops and allocated storage diff --git a/setup.py b/setup.py index 77b768db1..78fe04fb8 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def readme(): setup( name='troposphere', - version='2.2.2', + version='2.3.0', description="AWS CloudFormation creation library", long_description=readme(), author="Mark Peek", diff --git a/troposphere/__init__.py b/troposphere/__init__.py index 85453dcdb..a06c788ef 100644 --- a/troposphere/__init__.py +++ b/troposphere/__init__.py @@ -13,7 +13,7 @@ from . import validators -__version__ = "2.2.2" +__version__ = "2.3.0" # constants for DeletionPolicy Delete = 'Delete'