Skip to content

Commit 64330ca

Browse files
committed
all: Go 1.24
1 parent cfe612d commit 64330ca

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
timeout-minutes: 15
4545
strategy:
4646
matrix:
47-
go-version: ["1.22", "1.23"]
47+
go-version: ["1.23", "1.24"]
4848
steps:
4949
- name: Checkout repo
5050
uses: actions/checkout@v4
@@ -77,7 +77,7 @@ jobs:
7777
timeout-minutes: 15
7878
strategy:
7979
matrix:
80-
go-version: ["1.22", "1.23"]
80+
go-version: ["1.23", "1.24"]
8181
tinygo-version: ["0.33.0", "0.34.0", "0.35.0"]
8282
steps:
8383
- name: Checkout repo
@@ -108,7 +108,7 @@ jobs:
108108
timeout-minutes: 15
109109
strategy:
110110
matrix:
111-
go-version: ["1.22", "1.23"]
111+
go-version: ["1.23", "1.24"]
112112
tinygo-version: ["0.33.0", "0.34.0", "0.35.0"]
113113
steps:
114114
- name: Checkout repo

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
1515
- Breaking: generated `*.wasm.go` files will now have correct WIT kebab-case base name. Interfaces or worlds with `-` in their name will require removal of the previous `*.wasm.go` files.
1616
- Breaking: upgraded to `wasm-tools` [v1.226.0](https://github.com/bytecodealliance/wasm-tools/releases/tag/v1.226.0), which [removes support](https://github.com/bytecodealliance/wasm-tools/pull/2050) for multiple return values and flags with > 32 values. To ease migration, this package will continue to support JSON generated by `wasm-tools` v1.225.0 and earlier.
1717
- Dropped support for TinyGo v0.32.0.
18+
- Added support for Go 1.24 and dropped support for Go 1.22.
1819

1920
### Fixed
2021

cm/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module go.bytecodealliance.org/cm
22

3-
go 1.22.0
3+
go 1.23.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.bytecodealliance.org
22

3-
go 1.22.0
3+
go 1.23.0
44

55
require (
66
github.com/coreos/go-semver v0.3.1

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.22.0
1+
go 1.23.0
22

33
use (
44
.

testdata/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// This go.mod file exists to prevent the testdata directory from being included in module distribution.
22
module testdata
33

4-
go 1.22.0
4+
go 1.23.0

tests/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module tests
22

3-
go 1.22.0
3+
go 1.23.0

0 commit comments

Comments
 (0)