Release version v0.21.0

This commit is contained in:
terraform-docs-bot
2025-12-12 13:58:42 +00:00
parent 849b41e63f
commit 0643382b16
3 changed files with 12 additions and 12 deletions

View File

@@ -39,7 +39,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.20.0/terraform-docs-v0.20.0-$(uname)-amd64.tar.gz
curl -Lo ./terraform-docs.tar.gz https://github.com/terraform-docs/terraform-docs/releases/download/v0.21.0/terraform-docs-v0.21.0-$(uname)-amd64.tar.gz
tar -xzf terraform-docs.tar.gz
chmod +x terraform-docs
mv terraform-docs /usr/local/bin/terraform-docs
@@ -51,12 +51,12 @@ The latest version can be installed using `go install` or `go get`:
```bash
# go1.17+
go install github.com/terraform-docs/terraform-docs@v0.20.0
go install github.com/terraform-docs/terraform-docs@v0.21.0
```
```bash
# go1.16
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.20.0
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.21.0
```
**NOTE:** please use the latest Go to do this, minimum `go1.16` is required.
@@ -88,14 +88,14 @@ terraform-docs can be run as a container by mounting a directory with `.tf`
files in it and run the following command:
```bash
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.20.0 markdown /terraform-docs
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.21.0 markdown /terraform-docs
```
If `output.file` is not enabled for this module, generated output can be redirected
back to a file:
```bash
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.20.0 markdown /terraform-docs > doc.md
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.21.0 markdown /terraform-docs > doc.md
```
**NOTE:** Docker tag `latest` refers to _latest_ stable released version and `edge`
@@ -142,7 +142,7 @@ in the root of your Git repo with at least the following content:
```yaml
repos:
- repo: https://github.com/terraform-docs/terraform-docs
rev: "v0.20.0"
rev: "v0.21.0"
hooks:
- id: terraform-docs-go
args: ["markdown", "table", "--output-file", "README.md", "./mymodule/path"]

View File

@@ -51,14 +51,14 @@ terraform-docs can be run as a container by mounting a directory with `.tf`
files in it and run the following command:
```bash
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.20.0 markdown /terraform-docs
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.21.0 markdown /terraform-docs
```
If `output.file` is not enabled for this module, generated output can be redirected
back to a file:
```bash
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.20.0 markdown /terraform-docs > doc.md
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:0.21.0 markdown /terraform-docs > doc.md
```
{{< alert type="primary" >}}
@@ -73,7 +73,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.20.0/terraform-docs-v0.20.0-$(uname)-amd64.tar.gz
curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v0.21.0/terraform-docs-v0.21.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
@@ -89,12 +89,12 @@ The latest version can be installed using `go install` or `go get`:
```bash
# go1.17+
go install github.com/terraform-docs/terraform-docs@v0.20.0
go install github.com/terraform-docs/terraform-docs@v0.21.0
```
```bash
# go1.16
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.20.0
GO111MODULE="on" go get github.com/terraform-docs/terraform-docs@v0.21.0
```
{{< alert type="warning" >}}

View File

@@ -17,7 +17,7 @@ import (
// current version
const (
coreVersion = "0.20.0"
coreVersion = "0.21.0"
prerelease = ""
)