From f12310a0cfd915e168e0cced7198eb3cd73aba76 Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Wed, 13 Aug 2025 14:21:47 +0000 Subject: [PATCH] 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 example/ivy && 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) Change-Id: I8ffd5cb5db1f3551a42787652d09b11a0f75c5c6 Reviewed-on: https://go-review.googlesource.com/c/mobile/+/695418 Reviewed-by: Dmitri Shuralyov Auto-Submit: Gopher Robot LUCI-TryBot-Result: Go LUCI Reviewed-by: David Chase --- example/ivy/go.mod | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/ivy/go.mod b/example/ivy/go.mod index 8c82200..73d1e43 100644 --- a/example/ivy/go.mod +++ b/example/ivy/go.mod @@ -1,6 +1,6 @@ module golang.org/x/mobile/example/ivy -go 1.23.0 +go 1.24.0 require ( golang.org/x/mobile v0.0.0-20250711185624-d5bb5ecc55c0 diff --git a/go.mod b/go.mod index 100b3b2..7f80d1e 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module golang.org/x/mobile -go 1.23.0 +go 1.24.0 // The modern go/types type checker produces types.Alias // types for the explicit representation of type aliases.