From defb6b74fd533cc89ea9ec9361c8bf7f9968d119 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Thu, 11 Jul 2024 12:26:01 -0700 Subject: [PATCH] Release v1.6.0 (#3492) --- CHANGELOG.md | 9 +++++++++ README.md | 4 ++-- src/cfnlint/version.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a121f8e3c..a0cb839ebe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### v1.6.0 +## What's Changed +* Update CloudFormation schemas to 2024-07-11 by @github-actions in https://github.com/aws-cloudformation/cfn-lint/pull/3484 +* Return all errors from resolution by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3489 +* Disable [W1020](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#W1020) when using SAM by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3491 +* Use region when looking for a resolver being satisfied by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3490 + +**Full Changelog**: https://github.com/aws-cloudformation/cfn-lint/compare/v1.5.3...v1.6.0 + ### v1.5.3 ## What's Changed * Load registry schemas before implementing patching by @kddejong in https://github.com/aws-cloudformation/cfn-lint/pull/3486 diff --git a/README.md b/README.md index bbb2148692..dfb8d17d2f 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.5.3 # The version of cfn-lint to use + rev: v1.6.0 # 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.5.3 # The version of cfn-lint to use + rev: v1.6.0 # 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 d965f24d87..05d162cc7b 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "1.5.3" +__version__ = "1.6.0"