Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
markpeek committed Oct 21, 2015
1 parent 978cd9f commit e9b5f14
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 1.3.0 (2015-10-21)
- Add new resources from 2015-10-01 CloudFormation release:
- AWS::CodeDeploy
- AWS::DirectoryService::SimpleAD
- AWS::EC2::PlacementGroup and AWS::EC2::SpotFleet
- AWS::Lambda::EventSourceMapping and AWS::Lambda::Permission
- AWS::Logs::SubscriptionFilter
- AWS::RDS::DBCluster and AWS::RDS::DBClusterParameter
- AWS::WorkSpaces::Workspace
- Add updates to these resources from 2015-10-01 CloudFormation release:
- AWS::ElastiCache::ReplicationGroup
- AWS::OpsWorks::Stack
- AWS::OpsWorks::App
- AWS::S3::Bucket
- Add ElastiCache (Redis) Example [ GH-329]
- RDS: Added postgresql-license [GH-324]
- tail: only add unseen events [GH-327]
- Make Ref() work with datapipeline.ObjectField.RefValue [GH-328]
- Fix DeploymentGroup resource_type (AWS::CodeDeploy::DeploymentGroup) [GH-333]
- Add concatenation operator function __add__ for Tags [GH-334]

## 1.2.2 (2015-09-15)
- Give more info about type errors [GH-312]
- Move `tail` within the troposphere library. This lets external libraries
Expand Down
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ Currently supported AWS resource types
- AWS::CloudFront
- AWS::CloudTrail
- AWS::CloudWatch
- AWS::CodeDeploy
- AWS::DirectoryService
- AWS::DynamoDB
- AWS::EC2
- AWS::ElastiCache
Expand All @@ -129,6 +131,7 @@ Currently supported AWS resource types
- AWS::SDB
- AWS::SNS
- AWS::SQS
- AWS::WorkSpaces

Currently supported OpenStack resource types
============================================
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='troposphere',
version='1.2.2',
version='1.3.0',
description="AWS CloudFormation creation library",
author="Mark Peek",
author_email="mark@peek.org",
Expand Down
2 changes: 1 addition & 1 deletion troposphere/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from . import validators

__version__ = "1.2.2"
__version__ = "1.3.0"

# constants for DeletionPolicy
Delete = 'Delete'
Expand Down

0 comments on commit e9b5f14

Please sign in to comment.