diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b8975c58..56751d602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.2.1 (2015-09-07) +- Bugfix for RDS Ref/GetAtt issue [GH-310] + ## 1.2.0 (2015-09-04) - Add support for EFS - Elasticache: only validate az choices if azs is a list [GH-292] diff --git a/setup.py b/setup.py index 2737a71a5..e4450187a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='troposphere', - version='1.2.0', + version='1.2.1', description="AWS CloudFormation creation library", author="Mark Peek", author_email="mark@peek.org", diff --git a/troposphere/__init__.py b/troposphere/__init__.py index 526efd00a..7eb6527fa 100644 --- a/troposphere/__init__.py +++ b/troposphere/__init__.py @@ -10,7 +10,7 @@ from . import validators -__version__ = "1.2.0" +__version__ = "1.2.1" # constants for DeletionPolicy Delete = 'Delete'