1.31.2 Release (#1735)

This commit is contained in:
Charlie Drage 2023-10-12 08:54:11 -04:00 committed by GitHub
parent 09dc978e8e
commit a92241f799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View File

@ -51,10 +51,10 @@ Kompose is released via GitHub on a three-week cycle, you can see all current re
```sh ```sh
# Linux # Linux
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.1/kompose-linux-amd64 -o kompose curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.2/kompose-linux-amd64 -o kompose
# macOS # macOS
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.1/kompose-darwin-amd64 -o kompose curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.2/kompose-darwin-amd64 -o kompose
chmod +x kompose chmod +x kompose
sudo mv ./kompose /usr/local/bin/kompose sudo mv ./kompose /usr/local/bin/kompose
@ -62,7 +62,7 @@ sudo mv ./kompose /usr/local/bin/kompose
**Windows:** **Windows:**
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.31.1/kompose-windows-amd64.exe) and add the binary to your PATH. Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.31.2/kompose-windows-amd64.exe) and add the binary to your PATH.
## Shell autocompletion ## Shell autocompletion

View File

@ -1 +1 @@
1.31.1 1.31.2

View File

@ -22,10 +22,10 @@ Kompose is released via GitHub, you can see all current releases on the [GitHub
```sh ```sh
# Linux # Linux
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.1/kompose-linux-amd64 -o kompose curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.2/kompose-linux-amd64 -o kompose
# macOS # macOS
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.1/kompose-darwin-amd64 -o kompose curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.2/kompose-darwin-amd64 -o kompose
chmod +x kompose chmod +x kompose
sudo mv ./kompose /usr/local/bin/kompose sudo mv ./kompose /usr/local/bin/kompose
@ -33,7 +33,7 @@ sudo mv ./kompose /usr/local/bin/kompose
**Windows:** **Windows:**
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.31.1/kompose-windows-amd64.exe) and add the binary to your PATH. Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.31.2/kompose-windows-amd64.exe) and add the binary to your PATH.
## Go ## Go

View File

@ -2,7 +2,7 @@ package version
var ( var (
// VERSION is version number that will be displayed when running ./kompose version // VERSION is version number that will be displayed when running ./kompose version
VERSION = "1.31.1" VERSION = "1.31.2"
// GITCOMMIT is hash of the commit that will be displayed when running ./kompose version // 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)" // 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 // HEAD is default indicating that this was not set during build