E595 all: upgrade go directive to at least 1.24.0 [generated] · golang/exp@42675ad · GitHub
[go: up one dir, main page]

Skip to content

Commit 42675ad

Browse files
committed
all: upgrade go directive to at least 1.24.0 [generated]
By now Go 1.25.0 has been released, and Go 1.23 is no longer supported per the Go Release Policy (see https://go.dev/doc/devel/release#policy). For golang/go#69095. [git-generate] (cd errors && go get go@1.24.0 && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd event && go get go@1.24.0 && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd . && go get go@1.24.0 && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd jsonrpc2 && go get go@1.24.0 && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd shiny && go get go@1.24.0 && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd slog/benchmarks/zap_benchmarks && go get go@1.24.0 && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd slog/benchmarks/zerolog_benchmarks && go get go@1.24.0 && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd sumdb && go get go@1.24.0 && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd typeparams && go get go@1.24.0 && go mod tidy && go fix ./... && go mod edit -toolchain=none) Change-Id: Id1564bd83773adcd516fadf7c3a6f8da09c3b742 Reviewed-on: https://go-review.googlesource.com/c/exp/+/695177 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Gopher Robot <gobot@golang.org> Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
1 parent 51f8813 commit 42675ad

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

errors/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module golang.org/x/exp/errors
22

3-
go 1.23.0
3+
go 1.24.0

event/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module golang.org/x/exp/event
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/go-kit/kit v0.12.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module golang.org/x/exp
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/google/go-cmp v0.6.0

jsonrpc2/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module golang.org/x/exp/jsonrpc2
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
golang.org/x/exp/event v0.0.0-20250718183923-645b1fa84792

shiny/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module golang.org/x/exp/shiny
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
dmitri.shuralyov.com/gpu/mtl v0.0.0-20221208032759-85de2813cf6b

slog/benchmarks/zap_benchmarks/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module golang.org/x/exp/slog/benchmarks/zap_benchmarks
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
go.uber.org/zap v1.24.0

slog/benchmarks/zerolog_benchmarks/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module golang.org/x/exp/slog/benchmarks/zerolog_benchmarks
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/rs/zerolog v1.28.0

sumdb/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module golang.org/x/exp/sumdb
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require golang.org/x/crypto v0.41.0

typeparams/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module golang.org/x/exp/typeparams
22

3-
go 1.23.0
3+
go 1.24.0

0 commit comments

Comments
 (0)
0