Skip to content

Commit 338da2c

Browse files
authored
Release v0.75.0 (#2636)
1 parent 81dac9a commit 338da2c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### v0.75.0
2+
###### Features
3+
- Read the default region from Env Vars (pull #[2618](https://github.com/aws-cloudformation/cfn-lint/pull/2618))
4+
###### Fixes
5+
- Update rule [W2030](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#W2030) and [E3008](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3008) to read `ValueTypes` from `us-east-1` when `CACHED` (pull #[2635](https://github.com/aws-cloudformation/cfn-lint/pull/2635))
6+
17
### v0.74.3
28
###### Fixes
39
- Update rule [W2031](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#W2031), [E3031](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3031), [E3030](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3030), [E3034](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3034), and [E3033](https://github.com/aws-cloudformation/cfn-python-lint/blob/main/docs/rules.md#E3033) to read `ValueTypes` from `us-east-1` when `CACHED` (pull #[2628](https://github.com/aws-cloudformation/cfn-lint/pull/2628))

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ If you'd like cfn-lint to be run automatically when making changes to files in y
324324
```yaml
325325
repos:
326326
- repo: https://github.com/aws-cloudformation/cfn-lint
327-
rev: v0.74.3 # The version of cfn-lint to use
327+
rev: v0.75.0 # The version of cfn-lint to use
328328
hooks:
329329
- id: cfn-lint
330330
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
334334
```yaml
335335
repos:
336336
- repo: https://github.com/aws-cloudformation/cfn-lint
337-
rev: v0.74.3 # The version of cfn-lint to use
337+
rev: v0.75.0 # The version of cfn-lint to use
338338
hooks:
339339
- id: cfn-lint-rc
340340
```

src/cfnlint/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
SPDX-License-Identifier: MIT-0
44
"""
55

6-
__version__ = "0.74.3"
6+
__version__ = "0.75.0"

0 commit comments

Comments
 (0)