Skip to content

Commit 1f686b1

Browse files
committed
Release version v0.16.0
Signed-off-by: Khosrow Moossavi <khos2ow@gmail.com>
1 parent b0bf022 commit 1f686b1

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
@@ -43,7 +43,7 @@ Stable binaries are also available on the [releases] page. To install, download
4343
binary for your platform from "Assets" and place this into your `$PATH`:
4444

4545
```bash
46-
curl -Lo ./terraform-docs.tar.gz https://github.com/terraform-docs/terraform-docs/releases/download/v0.15.0/terraform-docs-v0.15.0-$(uname)-amd64.tar.gz
46+
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
4747
tar -xzf terraform-docs.tar.gz
4848
chmod +x terraform-docs
4949
mv terraform-docs /usr/local/terraform-docs
@@ -55,12 +55,12 @@ The latest version can be installed using `go install` or `go get`:
5555

5656
```bash
5757
# go1.17+
58-
go install github.com/terraform-docs/terraform-docs@v0.15.0
58+
go install github.com/terraform-docs/terraform-docs@v0.16.0
5959
```
6060

6161
```bash
6262
# go1.16
63-
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.15.0
63+
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.16.0
6464
```
6565

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

9494
```bash
95-
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.15.0 markdown /terraform-docs
95+
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.16.0 markdown /terraform-docs
9696
```
9797

9898
If `output.file` is not enabled for this module, generated output can be redirected
9999
back to a file:
100100

101101
```bash
102-
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.15.0 markdown /terraform-docs > doc.md
102+
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.16.0 markdown /terraform-docs > doc.md
103103
```
104104

105105
**NOTE:** Docker tag `latest` refers to _latest_ stable released version and `edge`
@@ -146,7 +146,7 @@ in the root of your Git repo with at least the following content:
146146
```yaml
147147
repos:
148148
- repo: https://github.com/terraform-docs/terraform-docs
149-
rev: "v0.15.0"
149+
rev: "v0.16.0"
150150
hooks:
151151
- id: terraform-docs-go
152152
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.15.0 markdown /terraform-docs
54+
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.16.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.15.0 markdown /terraform-docs > doc.md
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
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.15.0/terraform-docs-v0.15.0-$(uname)-amd64.tar.gz
76+
curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v0.16.0/terraform-docs-v0.16.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.15.0
92+
go install github.com/terraform-docs/terraform-docs@v0.16.0
9393
```
9494

9595
```bash
9696
# go1.16
97-
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.15.0
97+
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.16.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.16.0"
21-
prerelease = "alpha"
21+
prerelease = ""
2222
)
2323

2424
// Provisioned by ldflags

0 commit comments

Comments
 (0)