From dfc305b59a0bee7c72b7a263533b96bd98f1e6ab Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Thu, 5 Sep 2024 18:07:33 -0700 Subject: [PATCH] Release v1.12.4 (#3668) --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- src/cfnlint/version.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0073079be6..93d13201e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### v1.12.4 +## What's Changed +* Return Symbol instead of None on Fn::Equals logic by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3663 +* Remove handlers and tagging/permissions from specs by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3661 + +**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.12.3...v1.12.4 + ### v1.12.3 ## What's Changed * Allow for patch in place by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3649 diff --git a/README.md b/README.md index 50f20959a7..11cb441d12 100644 --- a/README.md +++ b/README.md @@ -342,7 +342,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: v1.12.3 # The version of cfn-lint to use + rev: v1.12.4 # The version of cfn-lint to use hooks: - id: cfn-lint files: path/to/cfn/dir/.*\.(json|yml|yaml)$ @@ -353,7 +353,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: v1.12.3 # The version of cfn-lint to use + rev: v1.12.4 # 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 8aa53c6649..079150ef8f 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "1.12.3" +__version__ = "1.12.4"