From a6e2c9aa49fdd452c4394afa5d52cb0895ec7927 Mon Sep 17 00:00:00 2001 From: kddejong Date: Wed, 8 May 2019 14:16:21 -0500 Subject: [PATCH] Release v0.20.1 --- CHANGELOG.md | 4 ++++ README.md | 2 +- src/cfnlint/version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a1a9ec8b8..f34b42fe2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 0.20.1 +###### Fixes +- Update rule [E8003](https://github.com/aws-cloudformation/cfn-python-lint/blob/master/docs/rules.md#E8003) to support more functions inside a Fn::Equals + ### 0.20.0 ###### Features - Allow a rule's exception to be defined in a [resource's metadata](https://github.com/kddejong/cfn-python-lint/tree/Release/v0.20.0#resource-based-metadata) diff --git a/README.md b/README.md index 74afa0112d..759a918733 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,7 @@ If you'd like cfn-lint to be run automatically when making changes to files in y ```yaml repos: - repo: https://github.com/aws-cloudformation/cfn-python-lint - rev: v0.20.0 # The version of cfn-lint to use + rev: v0.20.1 # The version of cfn-lint to use hooks: - id: cfn-python-lint files: path/to/cfn/dir/.*\.(json|yml|yaml)$ diff --git a/src/cfnlint/version.py b/src/cfnlint/version.py index 09a48ec781..03fb60064e 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -15,4 +15,4 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -__version__ = '0.20.0' +__version__ = '0.20.1'