Skip to content

Commit 795d369

Browse files
committed
Release version v0.17.0
1 parent a89c52e commit 795d369

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Stable binaries are also available on the [releases] page. To install, download
3939
binary for your platform from "Assets" and place this into your `$PATH`:
4040

4141
```bash
42-
curl -Lo ./terraform-docs.tar.gz https://github.com/terraform-docs/terraform-docs/releases/download/v0.16.0/terraform-docs-v0.16.0-$(uname)-amd64.tar.gz
42+
curl -Lo ./terraform-docs.tar.gz https://github.com/terraform-docs/terraform-docs/releases/download/v0.17.0/terraform-docs-v0.17.0-$(uname)-amd64.tar.gz
4343
tar -xzf terraform-docs.tar.gz
4444
chmod +x terraform-docs
4545
mv terraform-docs /usr/local/bin/terraform-docs
@@ -51,12 +51,12 @@ The latest version can be installed using `go install` or `go get`:
5151

5252
```bash
5353
# go1.17+
54-
go install github.com/terraform-docs/terraform-docs@v0.16.0
54+
go install github.com/terraform-docs/terraform-docs@v0.17.0
5555
```
5656

5757
```bash
5858
# go1.16
59-
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.16.0
59+
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.17.0
6060
```
6161

6262
**NOTE:** please use the latest Go to do this, minimum `go1.16` is required.
@@ -88,14 +88,14 @@ terraform-docs can be run as a container by mounting a directory with `.tf`
8888
files in it and run the following command:
8989

9090
```bash
91-
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.16.0 markdown /terraform-docs
91+
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.17.0 markdown /terraform-docs
9292
```
9393

9494
If `output.file` is not enabled for this module, generated output can be redirected
9595
back to a file:
9696

9797
```bash
98-
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.16.0 markdown /terraform-docs > doc.md
98+
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.17.0 markdown /terraform-docs > doc.md
9999
```
100100

101101
**NOTE:** Docker tag `latest` refers to _latest_ stable released version and `edge`
@@ -142,7 +142,7 @@ in the root of your Git repo with at least the following content:
142142
```yaml
143143
repos:
144144
- repo: https://github.com/terraform-docs/terraform-docs
145-
rev: "v0.16.0"
145+
rev: "v0.17.0"
146146
hooks:
147147
- id: terraform-docs-go
148148
args: ["markdown", "table", "--output-file", "README.md", "./mymodule/path"]

docs/user-guide/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ terraform-docs can be run as a container by mounting a directory with `.tf`
5151
files in it and run the following command:
5252

5353
```bash
54-
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.16.0 markdown /terraform-docs
54+
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.17.0 markdown /terraform-docs
5555
```
5656

5757
If `output.file` is not enabled for this module, generated output can be redirected
5858
back to a file:
5959

6060
```bash
61-
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.16.0 markdown /terraform-docs > doc.md
61+
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.17.0 markdown /terraform-docs > doc.md
6262
```
6363

6464
{{< alert type="primary" >}}
@@ -73,7 +73,7 @@ Stable binaries are available on the GitHub [Release] page. To install, download
7373
the file for your platform from "Assets" and place it into your `$PATH`:
7474

7575
```bash
76-
curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v0.16.0/terraform-docs-v0.16.0-$(uname)-amd64.tar.gz
76+
curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v0.17.0/terraform-docs-v0.17.0-$(uname)-amd64.tar.gz
7777
tar -xzf terraform-docs.tar.gz
7878
chmod +x terraform-docs
7979
mv terraform-docs /some-dir-in-your-PATH/terraform-docs
@@ -89,12 +89,12 @@ The latest version can be installed using `go install` or `go get`:
8989

9090
```bash
9191
# go1.17+
92-
go install github.com/terraform-docs/terraform-docs@v0.16.0
92+
go install github.com/terraform-docs/terraform-docs@v0.17.0
9393
```
9494

9595
```bash
9696
# go1.16
97-
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.16.0
97+
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.17.0
9898
```
9999

100100
{{< alert type="warning" >}}

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
// current version
1919
const (
2020
coreVersion = "0.17.0"
21-
prerelease = "alpha"
21+
prerelease = ""
2222
)
2323

2424
// Provisioned by ldflags

0 commit comments

Comments
 (0)