From f006cb5d8c7056923f3f21b31c14edfeed3804b5 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Mon, 29 Jul 2024 08:47:30 -0700 Subject: [PATCH] Release v0.87.10 (#3537) --- 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 e0e93a093a..0c2230921d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### v0.87.10 +###### CloudFormation Specifications +- Update CloudFormation specs to `182.0.0` (pull #[3391](https://github.com/aws-cloudformation/cfn-lint/pull/3443)) +- Patch in AWS::CloudFormation::StackSet.OperationPreferences.ConcurrencyMode (pull #[3462](https://github.com/aws-cloudformation/cfn-lint/pull/3462)) + ### v0.87.9 ###### CloudFormation Specifications - Update CloudFormation specs to `180.0.0` (pull #[3391](https://github.com/aws-cloudformation/cfn-lint/pull/3391)) diff --git a/README.md b/README.md index 694c885461..4903c2c439 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.9 # The version of cfn-lint to use + rev: v0.87.10 # 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.9 # The version of cfn-lint to use + rev: v0.87.10 # 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 7a3c7c7a26..a979b5907f 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "0.87.9" +__version__ = "0.87.10"