From a04ecdb9e8b8f1397afc28d8f64dd57b2996ef08 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Fri, 29 Sep 2023 11:42:16 -0400 Subject: [PATCH] 1.31.0 Release (#1714) --- README.md | 6 +++--- build/VERSION | 2 +- docs/installation.md | 6 +++--- pkg/version/version.go | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 896e07837..a6bfaab61 100644 --- a/README.md +++ b/README.md @@ -51,10 +51,10 @@ Kompose is released via GitHub on a three-week cycle, you can see all current re ```sh # Linux -curl -L https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-darwin-amd64 -o kompose chmod +x kompose sudo mv ./kompose /usr/local/bin/kompose @@ -62,7 +62,7 @@ sudo mv ./kompose /usr/local/bin/kompose **Windows:** -Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-windows-amd64.exe) and add the binary to your PATH. ## Shell autocompletion diff --git a/build/VERSION b/build/VERSION index 034552a83..34aae156b 100644 --- a/build/VERSION +++ b/build/VERSION @@ -1 +1 @@ -1.30.0 +1.31.0 diff --git a/docs/installation.md b/docs/installation.md index bc59c1185..4e7c88c89 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -22,10 +22,10 @@ Kompose is released via GitHub, you can see all current releases on the [GitHub ```sh # Linux -curl -L https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-darwin-amd64 -o kompose chmod +x kompose sudo mv ./kompose /usr/local/bin/kompose @@ -33,7 +33,7 @@ sudo mv ./kompose /usr/local/bin/kompose **Windows:** -Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-windows-amd64.exe) and add the binary to your PATH. ## Go diff --git a/pkg/version/version.go b/pkg/version/version.go index a4f5ea8de..6a37b136a 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -2,7 +2,7 @@ package version var ( // VERSION is version number that will be displayed when running ./kompose version - VERSION = "1.30.0" + VERSION = "1.31.0" // GITCOMMIT is hash of the commit that will be displayed when running ./kompose version // this will be overwritten when running build like this: go build -ldflags="-X github.com/kubernetes/kompose/pkg/version.GITCOMMIT=$(GITCOMMIT)" // HEAD is default indicating that this was not set during build