From 938836b5d14df40d17172dcb62fa919df4ae09df Mon Sep 17 00:00:00 2001 From: Michael Sauter Date: Wed, 30 Jun 2021 14:45:41 +0200 Subject: [PATCH] Bump version to 1.3.2 --- CHANGELOG.md | 2 ++ README.md | 8 ++++---- cmd/tailor/main.go | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4996aa1..4f88ec7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## [1.3.2] - 2021-06-30 + ### Fixed - Avoid panic on template with empty parameters([#238](https://github.com/opendevstack/tailor/pull/238)) diff --git a/README.md b/README.md index 675cf4f..51e1d96 100644 --- a/README.md +++ b/README.md @@ -21,27 +21,27 @@ The main target of Tailor is OpenShift 3.11. Tailor also works against OpenShift ## Installation -The latest release is 1.3.1 and requires oc = v3.11. OpenShift 4 is not officially supported yet although 1.3.0 is known to work with OpenShift 4.6. Note that Tailor is now considered to be feature-complete and will only receive bug fixes going forward. +The latest release is 1.3.2 and requires oc = v3.11. OpenShift 4 is not officially supported yet although 1.3.0 is known to work with OpenShift 4.6. Note that Tailor is now considered to be feature-complete and will only receive bug fixes going forward. Please have a look at the [changelog](https://github.com/opendevstack/tailor/blob/master/CHANGELOG.md) when upgrading. MacOS: ``` -curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.1/tailor-darwin-amd64" && \ +curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.2/tailor-darwin-amd64" && \ chmod +x tailor-darwin-amd64 && mv tailor-darwin-amd64 /usr/local/bin/tailor ``` Linux: ``` -curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.1/tailor-linux-amd64" && \ +curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.2/tailor-linux-amd64" && \ chmod +x tailor-linux-amd64 && mv tailor-linux-amd64 /usr/local/bin/tailor ``` Windows (using Git Bash): ``` -curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.1/tailor-windows-amd64.exe" && \ +curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.2/tailor-windows-amd64.exe" && \ chmod +x tailor-windows-amd64.exe && mv tailor-windows-amd64.exe /mingw64/bin/tailor.exe ``` diff --git a/cmd/tailor/main.go b/cmd/tailor/main.go index ee5701d..1b6ed18 100644 --- a/cmd/tailor/main.go +++ b/cmd/tailor/main.go @@ -253,7 +253,7 @@ func main() { command := kingpin.MustParse(app.Parse(os.Args[1:])) if command == versionCommand.FullCommand() { - fmt.Println("1.3.1+master") + fmt.Println("1.3.2") return }