Skip to content

Commit 664492e

Browse files
committed
Upgrade Go to 1.24
1 parent ab275ae commit 664492e

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@8edcb1bdb4e267140fa742c62e395cd74f332709
1717
- uses: actions/setup-go@8e57b58e57be52ac95949151e2777ffda8501267
1818
with:
19-
go-version: "1.23"
19+
go-version: "1.24"
2020
- name: build-wasm
2121
run: |
2222
./script/build-wasm

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
- uses: actions/checkout@8edcb1bdb4e267140fa742c62e395cd74f332709
1717
- uses: actions/setup-go@8e57b58e57be52ac95949151e2777ffda8501267
1818
with:
19-
go-version: "1.23"
19+
go-version: "1.24"
2020
- name: golangci-lint
2121
uses: golangci/golangci-lint-action@3d16f46f229bd30357c5de1a861936e9a560e973

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# v next
22

3+
- Upgrades Go version to 1.24, including relevant tweaks to WASM build
4+
- Imports the full suite of Goal extensions (see Goal's full.go)
5+
- Adds Goal's new flag lib
36
- Many Ari functions were written with scalar use-cases in mind, but many of them would be more powerful if they supported both scalar and array arguments. Such pervasive/broadcasting behavior has been added to the following functions:
47
- `time.format` _(also swapped arg order)_
58
- `time.parse`

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/semperos/ari
22

3-
go 1.23
4-
5-
toolchain go1.23.6
3+
go 1.24
64

75
require (
86
codeberg.org/anaseto/goal v1.3.0

script/build-wasm

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

33
cd cmd/wasm
44
GOOS=js GOARCH=wasm go build -o goal.wasm
5-
cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" .
5+
cp "$(go env GOROOT)/lib/wasm/wasm_exec.js" .

0 commit comments

Comments
 (0)