diff --git a/README.md b/README.md index 5871d92..ac7b3e7 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,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/terraform-docs@v0.14.1 +GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.15.0 ``` **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 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.1/terraform-docs-v0.14.1-$(uname)-amd64.tar.gz +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 tar -xzf terraform-docs.tar.gz chmod +x terraform-docs mv terraform-docs /some-dir-in-your-PATH/terraform-docs @@ -90,7 +90,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.1 +docker run quay.io/terraform-docs/terraform-docs:0.15.0 ``` **NOTE:** Docker tag `latest` refers to _latest_ stable released version and `edge` diff --git a/docs/user-guide/installation.md b/docs/user-guide/installation.md index 64f6d5d..ba7d43d 100644 --- a/docs/user-guide/installation.md +++ b/docs/user-guide/installation.md @@ -50,7 +50,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.1 +docker run quay.io/terraform-docs/terraform-docs:0.15.0 ``` 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 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.1/terraform-docs-v0.14.1-$(uname)-amd64.tar.gz +curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v0.15.0/terraform-docs-v0.15.0-$(uname)-amd64.tar.gz tar -xzf terraform-docs.tar.gz chmod +x terraform-docs mv terraform-docs /some-dir-in-your-PATH/terraform-docs @@ -76,7 +76,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/terraform-docs@v0.14.1 +GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.15.0 ``` **NOTE:** to download any version **before** `v0.9.1` (inclusive) you need to use to diff --git a/internal/version/version.go b/internal/version/version.go index b0def4e..9e67fc2 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -18,7 +18,7 @@ import ( // current version const ( coreVersion = "0.15.0" - prerelease = "alpha" + prerelease = "" ) // Provisioned by ldflags