Skip to content

Commit 9532cee

Browse files
authored
1.35.0 Release (#1971)
1 parent 62d33c4 commit 9532cee

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,18 @@ Kompose is released via GitHub on a three-week cycle, you can see all current re
4949

5050
```sh
5151
# Linux
52-
curl -L https://github.com/kubernetes/kompose/releases/download/v1.34.0/kompose-linux-amd64 -o kompose
52+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.35.0/kompose-linux-amd64 -o kompose
5353

5454
# macOS
55-
curl -L https://github.com/kubernetes/kompose/releases/download/v1.34.0/kompose-darwin-amd64 -o kompose
55+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.35.0/kompose-darwin-amd64 -o kompose
5656

5757
chmod +x kompose
5858
sudo mv ./kompose /usr/local/bin/kompose
5959
```
6060

6161
**Windows:**
6262

63-
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.34.0/kompose-windows-amd64.exe) and add the binary to your PATH.
63+
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.35.0/kompose-windows-amd64.exe) and add the binary to your PATH.
6464

6565
## Shell autocompletion
6666

build/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.34.0
1+
1.35.0

docs/installation.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,24 @@ This is the **recommended** way of installing Kompose.
2424

2525
```sh
2626
# Linux
27-
curl -L https://github.com/kubernetes/kompose/releases/download/v1.34.0/kompose-linux-amd64 -o kompose
27+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.35.0/kompose-linux-amd64 -o kompose
2828

2929
# Linux ARM64
30-
curl -L https://github.com/kubernetes/kompose/releases/download/v1.34.0/kompose-linux-arm64 -o kompose
30+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.35.0/kompose-linux-arm64 -o kompose
3131

3232
# macOS
33-
curl -L https://github.com/kubernetes/kompose/releases/download/v1.34.0/kompose-darwin-amd64 -o kompose
33+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.35.0/kompose-darwin-amd64 -o kompose
3434

3535
# macOS ARM64
36-
curl -L https://github.com/kubernetes/kompose/releases/download/v1.34.0/kompose-darwin-arm64 -o kompose
36+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.35.0/kompose-darwin-arm64 -o kompose
3737

3838
chmod +x kompose
3939
sudo mv ./kompose /usr/local/bin/kompose
4040
```
4141

4242
**Windows:**
4343

44-
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.34.0/kompose-windows-amd64.exe) and add the binary to your PATH.
44+
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.35.0/kompose-windows-amd64.exe) and add the binary to your PATH.
4545

4646
## Go
4747

pkg/version/version.go

+1-1
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.34.0"
5+
VERSION = "1.35.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)