From 12a316ec21bdec9f928ee4b16db02b0535fefa35 Mon Sep 17 00:00:00 2001 From: Almenon Date: Tue, 4 Feb 2025 20:52:18 -0800 Subject: [PATCH] 1.20 release --- Makefile | 2 +- README.md | 2 +- main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 062abab8..ac3f3f5b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=1.19.0 +VERSION=1.20.0 PATH_BUILD=build/ FILE_COMMAND=terragrunt-atlantis-config FILE_ARCH=$(shell go env GOOS)_$(shell go env GOARCH) diff --git a/README.md b/README.md index 7f686547..3e6fa453 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Then, make sure `terragrunt-atlantis-config` is present on your Atlantis server. ```hcl variable "terragrunt_atlantis_config_version" { - default = "1.19.0" + default = "1.20.0" } build { diff --git a/main.go b/main.go index 6cc9ccbb..f2f74c04 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,7 @@ import "github.com/transcend-io/terragrunt-atlantis-config/cmd" // This variable is set at build time using -ldflags parameters. // But we still set a default here for those using plain `go get` downloads // For more info, see: http://stackoverflow.com/a/11355611/483528 -var VERSION string = "1.19.0" +var VERSION string = "1.20.0" func main() { cmd.Execute(VERSION)