Skip to content

Commit a04ecdb

Browse files
authored
1.31.0 Release (#1714)
1 parent ddd5f33 commit a04ecdb

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ Kompose is released via GitHub on a three-week cycle, you can see all current re
5151

5252
```sh
5353
# Linux
54-
curl -L https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-linux-amd64 -o kompose
54+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-linux-amd64 -o kompose
5555

5656
# macOS
57-
curl -L https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-darwin-amd64 -o kompose
57+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-darwin-amd64 -o kompose
5858

5959
chmod +x kompose
6060
sudo mv ./kompose /usr/local/bin/kompose
6161
```
6262

6363
**Windows:**
6464

65-
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-windows-amd64.exe) and add the binary to your PATH.
65+
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-windows-amd64.exe) and add the binary to your PATH.
6666

6767
## Shell autocompletion
6868

build/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.30.0
1+
1.31.0

docs/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ Kompose is released via GitHub, you can see all current releases on the [GitHub
2222

2323
```sh
2424
# Linux
25-
curl -L https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-linux-amd64 -o kompose
25+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-linux-amd64 -o kompose
2626

2727
# macOS
28-
curl -L https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-darwin-amd64 -o kompose
28+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-darwin-amd64 -o kompose
2929

3030
chmod +x kompose
3131
sudo mv ./kompose /usr/local/bin/kompose
3232
```
3333

3434
**Windows:**
3535

36-
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-windows-amd64.exe) and add the binary to your PATH.
36+
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.31.0/kompose-windows-amd64.exe) and add the binary to your PATH.
3737

3838
## Go
3939

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package version
22

33
var (
44
// VERSION is version number that will be displayed when running ./kompose version
5-
VERSION = "1.30.0"
5+
VERSION = "1.31.0"
66
// GITCOMMIT is hash of the commit that will be displayed when running ./kompose version
77
// this will be overwritten when running build like this: go build -ldflags="-X github.com/kubernetes/kompose/pkg/version.GITCOMMIT=$(GITCOMMIT)"
88
// HEAD is default indicating that this was not set during build

0 commit comments

Comments
 (0)