Skip to content

Commit 10849d8

Browse files
oniicegithub-actions[bot]
authored andcommitted
docs: update version and changelog for 0.5.0
1 parent 299357a commit 10849d8

4 files changed

Lines changed: 23 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v0.5.0] - 2026-04-02
9+
### :sparkles: New Features
10+
- [`85e42f3`](https://github.com/myerscode/tflint-ruleset-aws-meta/commit/85e42f3ffbcdaa5eaaaf615cc4c5759e91afc908) - **release**: inject version from git tag *(commit by [@oniice](https://github.com/oniice))*
11+
- [`eb8430a`](https://github.com/myerscode/tflint-ruleset-aws-meta/commit/eb8430a5b391e29464f728c1defca2209021da97) - **rules**: detect hardcoded AZs and regions *(commit by [@oniice](https://github.com/oniice))*
12+
- [`253a450`](https://github.com/myerscode/tflint-ruleset-aws-meta/commit/253a45090b83395012289b96338edf486c4d9292) - **rules**: add aws_hardcoded_ids rule *(commit by [@oniice](https://github.com/oniice))*
13+
- [`299357a`](https://github.com/myerscode/tflint-ruleset-aws-meta/commit/299357a1417c0c946dc32e1e3e185620bde12537) - **ci**: add manual dispatch with semver validation *(commit by [@oniice](https://github.com/oniice))*
14+
15+
### :wrench: Chores
16+
- [`a18624a`](https://github.com/myerscode/tflint-ruleset-aws-meta/commit/a18624aa5da20db9b64f67d6dfa1c12376053c68) - **deps**: Bump github.com/terraform-linters/tflint-plugin-sdk *(PR [#33](https://github.com/myerscode/tflint-ruleset-aws-meta/pull/33) by [@dependabot[bot]](https://github.com/apps/dependabot))*
17+
- [`73e9e89`](https://github.com/myerscode/tflint-ruleset-aws-meta/commit/73e9e8990285eb25d45d9d5708d486d9d21cb3ac) - **deps**: Bump github.com/myerscode/aws-meta from 0.86.0 to 0.88.0 *(PR [#37](https://github.com/myerscode/tflint-ruleset-aws-meta/pull/37) by [@dependabot[bot]](https://github.com/apps/dependabot))*
18+
- [`00a8212`](https://github.com/myerscode/tflint-ruleset-aws-meta/commit/00a821234ea84a3d63416f60b956123a0d1b5cb2) - **deps**: Bump actions/deploy-pages from 4 to 5 *(PR [#35](https://github.com/myerscode/tflint-ruleset-aws-meta/pull/35) by [@dependabot[bot]](https://github.com/apps/dependabot))*
19+
- [`f994ce8`](https://github.com/myerscode/tflint-ruleset-aws-meta/commit/f994ce83be0a63be04d939234595dd0cb8530c42) - **deps**: Bump actions/setup-go from 6.3.0 to 6.4.0 *(PR [#36](https://github.com/myerscode/tflint-ruleset-aws-meta/pull/36) by [@dependabot[bot]](https://github.com/apps/dependabot))*
20+
- [`5bad0c5`](https://github.com/myerscode/tflint-ruleset-aws-meta/commit/5bad0c5b5c28c1260f51e478ede5ff3bcb7761f5) - **release**: use changelog-action for releases *(commit by [@oniice](https://github.com/oniice))*
21+
- [`f7b8c1b`](https://github.com/myerscode/tflint-ruleset-aws-meta/commit/f7b8c1b769623896430d06d84973444872f2fff4) - **ci**: use version tags and PAT for actions *(commit by [@oniice](https://github.com/oniice))*
22+
23+
824
## [0.4.1] - 2026-03-17
925

1026
### Changed
@@ -72,3 +88,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7288
[0.3.0]: https://github.com/myerscode/tflint-ruleset-aws-meta/compare/v0.2.0...v0.3.0
7389
[0.2.0]: https://github.com/myerscode/tflint-ruleset-aws-meta/compare/v0.1.0...v0.2.0
7490
[0.1.0]: https://github.com/myerscode/tflint-ruleset-aws-meta/releases/tag/v0.1.0
91+
[v0.5.0]: https://github.com/myerscode/tflint-ruleset-aws-meta/compare/v0.4.1...v0.5.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can install the plugin with `tflint --init`. Declare a config in `.tflint.hc
2525
plugin "aws-meta" {
2626
enabled = true
2727
28-
version = "0.3.0"
28+
version = "0.5.0"
2929
source = "github.com/myerscode/tflint-ruleset-aws-meta"
3030
}
3131
```

docs-site/src/content/docs/configuration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Most rules are disabled by default to avoid overwhelming existing codebases. You
1818
```hcl
1919
plugin "aws-meta" {
2020
enabled = true
21-
version = "0.3.0"
21+
version = "0.5.0"
2222
source = "github.com/myerscode/tflint-ruleset-aws-meta"
2323
}
2424
@@ -53,7 +53,7 @@ rule "aws_meta_hardcoded" {
5353
```hcl
5454
plugin "aws-meta" {
5555
enabled = true
56-
version = "0.3.0"
56+
version = "0.5.0"
5757
source = "github.com/myerscode/tflint-ruleset-aws-meta"
5858
}
5959
```
@@ -62,7 +62,7 @@ plugin "aws-meta" {
6262
```hcl
6363
plugin "aws-meta" {
6464
enabled = true
65-
version = "0.3.0"
65+
version = "0.5.0"
6666
source = "github.com/myerscode/tflint-ruleset-aws-meta"
6767
}
6868
@@ -91,7 +91,7 @@ rule "aws_provider_hardcoded_region" {
9191
```hcl
9292
plugin "aws-meta" {
9393
enabled = true
94-
version = "0.3.0"
94+
version = "0.5.0"
9595
source = "github.com/myerscode/tflint-ruleset-aws-meta"
9696
}
9797

docs-site/src/content/docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can install the plugin with `tflint --init`. Declare a config in `.tflint.hc
1818
plugin "aws-meta" {
1919
enabled = true
2020
21-
version = "0.3.0"
21+
version = "0.5.0"
2222
source = "github.com/myerscode/tflint-ruleset-aws-meta"
2323
}
2424
```

0 commit comments

Comments
 (0)