From 2043f0d0fafd93efc400a80feb2abf0335aca185 Mon Sep 17 00:00:00 2001 From: David Mattia Date: Thu, 22 Apr 2021 17:17:40 -0500 Subject: [PATCH] bump version to 1.5.0 (#138) --- Makefile | 2 +- README.md | 4 ++-- main.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 9b69152e..13b86f7b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=1.4.1 +VERSION=1.5.0 PATH_BUILD=build/ FILE_COMMAND=terragrunt-atlantis-config FILE_ARCH=darwin_amd64 diff --git a/README.md b/README.md index 9a6c2d0d..e9e72a04 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.4.1" + default = "1.5.0" } build { @@ -168,7 +168,7 @@ You can install this tool locally to checkout what kinds of config it will gener Recommended: Install any version via go get: ```bash -cd && GO111MODULE=on go get github.com/transcend-io/terragrunt-atlantis-config@v1.4.1 && cd - +cd && GO111MODULE=on go get github.com/transcend-io/terragrunt-atlantis-config@v1.5.0 && cd - ``` This module officially supports golang versions v1.13, v1.14, v1.15, and v1.16, tested on CircleCI with each build diff --git a/main.go b/main.go index ec16f78b..92dd96cd 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.4.1" +var VERSION string = "1.5.0" func main() { cmd.Execute(VERSION)