Skip to content

Commit 6c0b997

Browse files
committed
Bump up version to v0.1.1
1 parent f9d57c3 commit 6c0b997

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.1.1 (2022-09-17)
2+
3+
### BugFixes
4+
5+
- [#26](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/26): Prefer --only option over other rules config
6+
- TFLint v0.40.1+ is required to apply this bug fix.
7+
18
## 0.1.0 (2022-09-08)
29

310
Initial release 🎉

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ This ruleset is built into TFLint, so you usually don't need to worry about how
1919
```
2020
$ tflint -v
2121
TFLint version 0.40.0
22-
+ ruleset.terraform (0.1.0-bundled)
22+
+ ruleset.terraform (0.1.1-bundled)
2323
```
2424

2525
If you want to use a version different from the built-in version, you can declare `plugin` in `.tflint.hcl` as follows and install it with `tflint --init`:
2626

2727
```hcl
2828
plugin "terraform" {
2929
enabled = true
30-
version = "0.1.0"
30+
version = "0.1.1"
3131
source = "github.com/terraform-linters/tflint-ruleset-terraform"
3232
}
3333
```

docs/configuration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@ Default: `all` (`recommended` for the bundled plugin)
1818

1919
Enable multiple rules at once. Please see [Rules](rules/README.md) for details. Possible values are `recommended` and `all`.
2020

21+
The preset have higher priority than `disabled_by_default` and lower than each rule block.
22+
2123
When using the bundled plugin built into TFLint, you can use this plugin without declaring a "plugin" block. In this case the default is `recommeneded`.

project/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package project
33
import "fmt"
44

55
// Version is ruleset version
6-
const Version string = "0.1.0"
6+
const Version string = "0.1.1"
77

88
// ReferenceLink returns the rule reference link
99
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)