Skip to content

Commit

Permalink
Release 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
markpeek committed Apr 14, 2017
1 parent 4ed475b commit a6783a3
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 4 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## 1.9.3 (2017-04-13)
- Fix pycodestyle by using an explicit exception type
- Add more details to pycodestyle errors for travis runs
- Fix validator function exception test
- Remove limit check on conditions - Fixes #657
- Allow valid value for TargetGroup HealthCheckPort (#659)
- Added step functions and basic tests (#661)
- Adding example for CloudTrail (from http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html) (#667)
- Fix ApiGateway.py sample (#666)
- Update comment on type checking
- Added missing props to ec2.NetworkInterfaces (#669) (#670)
- Add WAF Common Attacks Sample (#675)
- Updated constants with new instance types (#674)
- SSM Targets - fix spelling mistake (Value => Values) (#673)
- Do json validation on ApiGateway::Model Schema (Fix #679) (#681)
- SQS: Add FifoQueue and ContentBasedDeduplication (#687)
- VPCPeeringConnection: add PeerOwnerId & PeerRoleArn (#688)
- IAM: Add InstanceProfileName to InstanceProfile (#689)
- Add ApiGateway UsagePlanKey resource
- Add DeadLetterConfig property to Lambda::Function
- Add new subproperties to route53 and redshift (#690)
- Route53: ChildHealthChecks is a list of strings (#690)
- Fix typo in S3_Bucket_With_Versioning_And_Lifecycle_Rules.py (#693)
- Allow a dict to be passed in to initalize Tags (#692)
- Add SSM::Parameter
- Update autoscaling example to remove rebinding (#695)

## 1.9.2 (2017-01-29)
- Extra template validation (#635)
- Update ECS to Jan 17, 2017 release (#642)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012-2013, Mark Peek <[email protected]>
Copyright (c) 2012-2017, Mark Peek <[email protected]>
All rights reserved.

Redistribution and use in source and binary forms, with or without
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.9.2',
version='1.9.3',
description="AWS CloudFormation creation library",
author="Mark Peek",
author_email="[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions troposphere/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2012-2013, Mark Peek <[email protected]>
# Copyright (c) 2012-2017, Mark Peek <[email protected]>
# All rights reserved.
#
# See LICENSE file for full license.
Expand All @@ -12,7 +12,7 @@

from . import validators

__version__ = "1.9.2"
__version__ = "1.9.3"

# constants for DeletionPolicy
Delete = 'Delete'
Expand Down

0 comments on commit a6783a3

Please sign in to comment.