Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
markpeek committed Sep 4, 2015
1 parent 7fbf669 commit 0164877
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 @@
## 1.2.0 (2015-09-04)
- Add support for EFS
- Elasticache: only validate az choices if azs is a list [GH-292]
- Add from_dict function to BaseAWSObject [GH-294]
- IAM: Path is optional for Role and InstanceProfile [GH-295]
- Validate parameter options based on Type [GH-296]
- RDS: Add more specific validators to DBInstance [GH-297]
- Add constants for the parameter types [GH-300]
- Add lambda ZipFile property [GH-301]
- Adds VPCEndpoint resource type [GH-304]
- Supports tags in ElasticBeanstalk environments [GH-308]
- Move cloudformation attribute setting to __setattr__ [GH-309]

## 1.1.2 (2015-07-23)
- Clarify the license is a [BSD 2-Clause license](http://opensource.org/licenses/BSD-2-Clause)
- Add FindInMap type check for AutoScalingGroup validation of group sizes [GH-285]
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.1.2',
version='1.2.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.1.2"
__version__ = "1.2.0"

# constants for DeletionPolicy
Delete = 'Delete'
Expand Down

0 comments on commit 0164877

Please sign in to comment.