From 583417b7d28af26f1fa9912a15150944214a36d8 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Mon, 21 Oct 2024 10:55:46 -0700 Subject: [PATCH] Release v0.87.11 (#3776) --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- src/cfnlint/version.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c2230921d..adbe4f12c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### v0.87.11 +###### CloudFormation Specifications +- Update CloudFormation specs to `186.0.0` (pull #[3578](https://github.com/aws-cloudformation/cfn-lint/pull/3578)) +- Add region `ap-southeast-5` (pull #[3673](https://github.com/aws-cloudformation/cfn-lint/pull/3673)) + ### v0.87.10 ###### CloudFormation Specifications - Update CloudFormation specs to `182.0.0` (pull #[3391](https://github.com/aws-cloudformation/cfn-lint/pull/3443)) diff --git a/README.md b/README.md index 4903c2c439..937bb9a842 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.87.10 # The version of cfn-lint to use + rev: v0.87.11 # 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.87.10 # The version of cfn-lint to use + rev: v0.87.11 # 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 a979b5907f..1bcf9eeea9 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "0.87.10" +__version__ = "0.87.11"