Skip to content

Commit 0a91a20

Browse files
committed
Bump up version to 0.29.0
1 parent 7c3d61a commit 0a91a20

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Example:
2727
2828
```console
2929
$ tflint -v
30-
TFLint version 0.28.1
31-
+ ruleset.aws (0.4.0-bundled)
30+
TFLint version 0.29.0
31+
+ ruleset.aws (0.4.1-bundled)
3232
$ terraform -v
33-
Terraform v0.15.1
33+
Terraform v0.15.3
3434
```
3535
-->

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 0.29.0 (2021-06-05)
2+
3+
This release introduces the `--init` option for installing plugins automatically. This makes it easy to install plugin binaries published on GitHub Release that meet conventions. See [Configuring Plugins](docs/user-guide/plugins.md) for details.
4+
5+
### Enhancements
6+
7+
- [#1119](https://github.com/terraform-linters/tflint/pull/1119): cmd: Add --init for installing plugins automatically ([@wata727](https://github.com/wata727))
8+
- [#1126](https://github.com/terraform-linters/tflint/pull/1126): terraform_module_pinned_source: support additional default_branches ([@bendrucker](https://github.com/bendrucker))
9+
- [#1130](https://github.com/terraform-linters/tflint/pull/1130): Bump bundled AWS ruleset plugin ([@wata727](https://github.com/wata727))
10+
11+
### Chores
12+
13+
- [#1120](https://github.com/terraform-linters/tflint/pull/1120): build(deps): Bump github.com/hashicorp/terraform from 0.15.1 to 0.15.3
14+
- [#1121](https://github.com/terraform-linters/tflint/pull/1121): build(deps): Bump github.com/zclconf/go-cty from 1.8.2 to 1.8.3
15+
- [#1124](https://github.com/terraform-linters/tflint/pull/1124): Refactor terraform_module_pinned_source rule ([@bendrucker](https://github.com/bendrucker))
16+
- [#1127](https://github.com/terraform-linters/tflint/pull/1127): install: handle running as root (without sudo) ([@bendrucker](https://github.com/bendrucker))
17+
- [#1128](https://github.com/terraform-linters/tflint/pull/1128): build(deps): Bump actions/cache from 2.1.5 to 2.1.6
18+
119
## 0.28.1 (2021-05-05)
220

321
### BugFixes

tflint/meta.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package tflint
33
import "fmt"
44

55
// Version is application version
6-
const Version string = "0.28.1"
6+
const Version string = "0.29.0"
77

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

0 commit comments

Comments
 (0)