Skip to content

Commit

Permalink
1.31.2 Release (#1735)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrage committed Oct 12, 2023
1 parent 09dc978 commit a92241f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -51,18 +51,18 @@ 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.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
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
sudo mv ./kompose /usr/local/bin/kompose
```

**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

Expand Down
2 changes: 1 addition & 1 deletion build/VERSION
@@ -1 +1 @@
1.31.1
1.31.2
6 changes: 3 additions & 3 deletions docs/installation.md
Expand Up @@ -22,18 +22,18 @@ 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.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
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
sudo mv ./kompose /usr/local/bin/kompose
```

**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

Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Expand Up @@ -2,7 +2,7 @@ package version

var (
// 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
// 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
Expand Down

0 comments on commit a92241f

Please sign in to comment.