@@ -17,32 +17,32 @@ checksums for all release files.
1717For example:
1818
1919``` bash
20- make docker-release tag=v0.31.3 -beta
20+ make docker-release tag=v0.32.1 -beta
2121```
2222
23- This will create the release artifacts in the ` loop-v0.31.3 -beta ` directory.
23+ This will create the release artifacts in the ` loop-v0.32.1 -beta ` directory.
2424
2525If you want to build from an untagged commit, first check it out, then use the
2626output of ` git describe --abbrev=10 ` as the tag:
2727
2828``` bash
2929git describe --abbrev=10
30- # v0.31.2 -beta-135-g35d0fa26ac
30+ # v0.32.1 -beta-135-g35d0fa26ac
3131
32- make docker-release tag=v0.31.2 -beta-135-g35d0fa26ac
32+ make docker-release tag=v0.32.1 -beta-135-g35d0fa26ac
3333```
3434
3535You can filter the target platforms to speed up the build process. For example,
3636to build only for ` linux-amd64 ` :
3737
3838``` bash
39- make docker-release buildsys=linux-amd64 tag=v0.31.3 -beta
39+ make docker-release buildsys=linux-amd64 tag=v0.32.1 -beta
4040```
4141
4242Or for multiple platforms:
4343
4444``` bash
45- make docker-release buildsys=' linux-amd64 windows-amd64' tag=v0.31.3 -beta
45+ make docker-release buildsys=' linux-amd64 windows-amd64' tag=v0.32.1 -beta
4646```
4747
4848Note: inside Docker the current directory is mapped as ` /repo ` and it might
@@ -67,14 +67,14 @@ for a release using the following commands:
6767``` bash
6868$ go version
6969go version go1.25.0 linux/amd64
70- $ go install golang.org/dl/go1.24.9 @latest
71- $ go1.24.9 download
72- Unpacking /home/user/sdk/go1.24.9 /go1.24.9 .linux-amd64.tar.gz ...
73- Success. You may now run ' go1.24.9 '
74- $ go1.24.9 version
75- go version go1.24.9 linux/amd64
76-
77- $ GO_CMD=/home/user/go/bin/go1.24.9 ./release.sh v0.31.5
70+ $ go install golang.org/dl/go1.26.0 @latest
71+ $ go1.26.0 download
72+ Unpacking /home/user/sdk/go1.26.0 /go1.26.0 .linux-amd64.tar.gz ...
73+ Success. You may now run ' go1.26.0 '
74+ $ go1.26.0 version
75+ go version go1.26.0 linux/amd64
76+
77+ $ GO_CMD=/home/user/go/bin/go1.26.0 ./release.sh v0.32.1
7878```
7979
8080On MacOS, you will need to install GNU tar and GNU gzip, which can be done with
@@ -99,7 +99,7 @@ To filter the target platforms, pass them as a space-separated list in the
9999` LOOPBUILDSYS ` environment variable:
100100
101101``` bash
102- LOOPBUILDSYS=' linux-amd64 windows-amd64' ./release.sh v0.31.3 -beta
102+ LOOPBUILDSYS=' linux-amd64 windows-amd64' ./release.sh v0.32.1 -beta
103103```
104104
105105This will produce the same artifacts in a ` loop-<tag-of-release> ` directory as
0 commit comments