From 1c5256bd37dff55caee0590a21270b70b1e844ec Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Mon, 31 Jul 2023 09:52:10 -0700 Subject: [PATCH] Release v0.79.6 (#2832) --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- src/cfnlint/version.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99b993afe8..30b050834f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### v0.79.6 +###### CloudFormation Specifications +- Fix `AWS::Glue::Job.Name` to use string min/max instead of number min/max (pull #[2831](https://github.com/aws-cloudformation/cfn-lint/pull/2831)) + ### v0.79.5 ###### CloudFormation Specifications - Update schema to spec conversions to include include a default string minimum value of 0 if not specified (pull #[2824](https://github.com/aws-cloudformation/cfn-lint/pull/2824)) diff --git a/README.md b/README.md index 9243239527..743a054ef4 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.79.5 # The version of cfn-lint to use + rev: v0.79.6 # 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.79.5 # The version of cfn-lint to use + rev: v0.79.6 # 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 185508a4f7..96ff03aa21 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -3,4 +3,4 @@ SPDX-License-Identifier: MIT-0 """ -__version__ = "0.79.5" +__version__ = "0.79.6"