From 646a8de48a4fc58ec4b9130b8c9fe8bcd0c5096a Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Mon, 13 Nov 2023 08:40:39 -0800 Subject: [PATCH] Release v0.83.2 (#2946) --- 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 df29ac3c86..d83e094490 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### v0.83.2 +###### CloudFormation Specifications +- Update CloudFormation specs to `148.0.0` (pull #[2942](https://github.com/aws-cloudformation/cfn-lint/pull/2942)) +- Add in `LoadBalancerArn` to `LoadBalancerV2Arn` (pull #[2936](https://github.com/aws-cloudformation/cfn-lint/pull/2936)) + ### v0.83.1 ###### CloudFormation Specifications - Update CloudFormation specs to `146.0.0` (pull #[2921](https://github.com/aws-cloudformation/cfn-lint/pull/2921)) diff --git a/README.md b/README.md index 6dc0715abd..6018446be2 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.83.1 # The version of cfn-lint to use + rev: v0.83.2 # 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.83.1 # The version of cfn-lint to use + rev: v0.83.2 # 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 51101838c4..42501debed 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "0.83.1" +__version__ = "0.83.2"