Skip to content

Commit 6982373

Browse files
committed
Release version v0.14.0
Signed-off-by: Khosrow Moossavi <[email protected]>
1 parent b99e642 commit 6982373

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
@@ -24,7 +24,7 @@ Visit [our website] for all documentation.
2424
The latest version can be installed using `go get`:
2525

2626
```bash
27-
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.13.0
27+
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.14.0
2828
```
2929

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

5252
```bash
53-
curl -Lo ./terraform-docs.tar.gz https://github.com/terraform-docs/terraform-docs/releases/download/v0.13.0/terraform-docs-v0.13.0-$(uname)-amd64.tar.gz
53+
curl -Lo ./terraform-docs.tar.gz https://github.com/terraform-docs/terraform-docs/releases/download/v0.14.0/terraform-docs-v0.14.0-$(uname)-amd64.tar.gz
5454
tar -xzf terraform-docs.tar.gz
5555
chmod +x terraform-docs
5656
mv terraform-docs /some-dir-in-your-PATH/terraform-docs
@@ -86,7 +86,7 @@ choco install terraform-docs
8686
Alternatively you also can run `terraform-docs` as a container:
8787

8888
```bash
89-
docker run quay.io/terraform-docs/terraform-docs:0.13.0
89+
docker run quay.io/terraform-docs/terraform-docs:0.14.0
9090
```
9191

9292
**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
@@ -44,7 +44,7 @@ choco install terraform-docs
4444
You also can run `terraform-docs` as a container:
4545

4646
```bash
47-
docker run quay.io/terraform-docs/terraform-docs:0.13.0
47+
docker run quay.io/terraform-docs/terraform-docs:0.14.0
4848
```
4949

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

5959
```bash
60-
curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v0.13.0/terraform-docs-v0.13.0-$(uname)-amd64.tar.gz
60+
curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v0.14.0/terraform-docs-v0.14.0-$(uname)-amd64.tar.gz
6161
tar -xzf terraform-docs.tar.gz
6262
chmod +x terraform-docs
6363
mv terraform-docs /some-dir-in-your-PATH/terraform-docs
@@ -70,7 +70,7 @@ mv terraform-docs /some-dir-in-your-PATH/terraform-docs
7070
The latest version can be installed using `go get`:
7171

7272
```bash
73-
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.13.0
73+
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.14.0
7474
```
7575

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

2424
// Provisioned by ldflags

0 commit comments

Comments
 (0)