diff --git a/.travis.yml b/.travis.yml index 57987b4..55144a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,9 +3,9 @@ language: ruby cache: bundler rvm: -- 2.4.5 -- 2.5.4 -- 2.6.2 +- 2.5.9 +- 2.6.8 +- 2.7.4 script: - bundle exec rubocop . diff --git a/CHANGELOG.md b/CHANGELOG.md index 237c789..8336385 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # aws_cloudformation_helper Changelog +## 0.2.0 +- Feature: Custom response data and custom physical_resource_id ([PR-1](https://github.com/jeffreycoe/aws_cloudformation_helper/pull/1)) + ## 0.1.0 -Initial release +- Initial release diff --git a/lib/aws_cloudformation_helper/version.rb b/lib/aws_cloudformation_helper/version.rb index 5d2bcc9..0cc486e 100644 --- a/lib/aws_cloudformation_helper/version.rb +++ b/lib/aws_cloudformation_helper/version.rb @@ -4,7 +4,7 @@ module AWS module CloudFormation class Helper module Version - GEM_VERSION = '0.1.0' + GEM_VERSION = '0.2.0' end end end