From 43e42b2dfd7b0881ef5071c93d0e842137faba27 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Mon, 8 May 2023 09:33:12 -0700 Subject: [PATCH] Release v0.77.5 (#2735) --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- src/cfnlint/version.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55c7ce9551..4cc4fe8039 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### v0.77.5 +###### CloudFormation Specifications +- Update CloudFormation specs to `121.0.0` (pull #[2723](https://github.com/aws-cloudformation/cfn-lint/pull/2723)) + ### v0.77.4 ###### CloudFormation Specifications - Update CloudFormation specs to `120.0.0` (pull #[2714](https://github.com/aws-cloudformation/cfn-lint/pull/2714)) diff --git a/README.md b/README.md index 5b5022619d..958df2dd41 100644 --- a/README.md +++ b/README.md @@ -324,7 +324,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-lint - rev: v0.77.4 # The version of cfn-lint to use + rev: v0.77.5 # The version of cfn-lint to use hooks: - id: cfn-lint files: path/to/cfn/dir/.*\.(json|yml|yaml)$ @@ -334,7 +334,7 @@ If you are using a `.cfnlintrc` and specifying the `templates` or `ignore_templa ```yaml repos: - repo: https://github.com/aws-cloudformation/cfn-lint - rev: v0.77.4 # The version of cfn-lint to use + rev: v0.77.5 # The version of cfn-lint to use hooks: - id: cfn-lint-rc ``` diff --git a/src/cfnlint/version.py b/src/cfnlint/version.py index 0320c35cab..1666bdd5e8 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "0.77.4" +__version__ = "0.77.5"