Skip to content

Commit f3b6eab

Browse files
committed
Release version v0.15.0
Signed-off-by: Khosrow Moossavi <khos2ow@gmail.com>
1 parent 7cf3677 commit f3b6eab

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Visit [our website] for all documentation.
2828
The latest version can be installed using `go get`:
2929

3030
```bash
31-
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.14.1
31+
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.15.0
3232
```
3333

3434
**NOTE:** to download any version **before** `v0.9.1` (inclusive) you need to use to
@@ -54,7 +54,7 @@ Stable binaries are also available on the [releases] page. To install, download
5454
binary for your platform from "Assets" and place this into your `$PATH`:
5555

5656
```bash
57-
curl -Lo ./terraform-docs.tar.gz https://github.com/terraform-docs/terraform-docs/releases/download/v0.14.1/terraform-docs-v0.14.1-$(uname)-amd64.tar.gz
57+
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
5858
tar -xzf terraform-docs.tar.gz
5959
chmod +x terraform-docs
6060
mv terraform-docs /some-dir-in-your-PATH/terraform-docs
@@ -90,7 +90,7 @@ choco install terraform-docs
9090
Alternatively you also can run `terraform-docs` as a container:
9191

9292
```bash
93-
docker run quay.io/terraform-docs/terraform-docs:0.14.1
93+
docker run quay.io/terraform-docs/terraform-docs:0.15.0
9494
```
9595

9696
**NOTE:** Docker tag `latest` refers to _latest_ stable released version and `edge`

docs/user-guide/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ choco install terraform-docs
5050
You also can run `terraform-docs` as a container:
5151

5252
```bash
53-
docker run quay.io/terraform-docs/terraform-docs:0.14.1
53+
docker run quay.io/terraform-docs/terraform-docs:0.15.0
5454
```
5555

5656
Docker tag `latest` refers to _latest_ stable released version and `edge`refers
@@ -63,7 +63,7 @@ Stable binaries are available on the GitHub [Release] page. To install, download
6363
the file for your platform from "Assets" and place it into your `$PATH`:
6464

6565
```bash
66-
curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v0.14.1/terraform-docs-v0.14.1-$(uname)-amd64.tar.gz
66+
curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v0.15.0/terraform-docs-v0.15.0-$(uname)-amd64.tar.gz
6767
tar -xzf terraform-docs.tar.gz
6868
chmod +x terraform-docs
6969
mv terraform-docs /some-dir-in-your-PATH/terraform-docs
@@ -76,7 +76,7 @@ mv terraform-docs /some-dir-in-your-PATH/terraform-docs
7676
The latest version can be installed using `go get`:
7777

7878
```bash
79-
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.14.1
79+
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.15.0
8080
```
8181

8282
**NOTE:** to download any version **before** `v0.9.1` (inclusive) you need to use to

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.15.0"
21-
prerelease = "alpha"
21+
prerelease = ""
2222
)
2323

2424
// Provisioned by ldflags

0 commit comments

Comments
 (0)