Skip to content

Commit

Permalink
Release version v0.14.1
Browse files Browse the repository at this point in the history
Signed-off-by: Khosrow Moossavi <[email protected]>
  • Loading branch information
khos2ow committed Jun 1, 2021
1 parent 7a6d01d commit 52f0ea0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Visit [our website] for all documentation.
The latest version can be installed using `go get`:

```bash
GO111MODULE="on" go get github.com/terraform-docs/[email protected].0
GO111MODULE="on" go get github.com/terraform-docs/[email protected].1
```

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

```bash
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
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
tar -xzf terraform-docs.tar.gz
chmod +x terraform-docs
mv terraform-docs /some-dir-in-your-PATH/terraform-docs
Expand Down Expand Up @@ -86,7 +86,7 @@ choco install terraform-docs
Alternatively you also can run `terraform-docs` as a container:

```bash
docker run quay.io/terraform-docs/terraform-docs:0.14.0
docker run quay.io/terraform-docs/terraform-docs:0.14.1
```

**NOTE:** Docker tag `latest` refers to _latest_ stable released version and `edge`
Expand Down
6 changes: 3 additions & 3 deletions docs/user-guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ choco install terraform-docs
You also can run `terraform-docs` as a container:

```bash
docker run quay.io/terraform-docs/terraform-docs:0.14.0
docker run quay.io/terraform-docs/terraform-docs:0.14.1
```

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

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

```bash
GO111MODULE="on" go get github.com/terraform-docs/[email protected].0
GO111MODULE="on" go get github.com/terraform-docs/[email protected].1
```

**NOTE:** to download any version **before** `v0.9.1` (inclusive) you need to use to
Expand Down
4 changes: 2 additions & 2 deletions internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (

// current version
const (
coreVersion = "0.15.0"
prerelease = "alpha"
coreVersion = "0.14.1"
prerelease = ""
)

// Provisioned by ldflags
Expand Down

0 comments on commit 52f0ea0

Please sign in to comment.