Skip to content

Commit eff6e97

Browse files
committed
all: upgrade go directive to at least 1.23.0 [generated]
By now Go 1.24.0 has been released, and Go 1.22 is no longer supported per the Go Release Policy (https://go.dev/doc/devel/release#policy). For golang/go#69095. [git-generate] (cd errors && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd event && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd . && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd jsonrpc2 && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd shiny && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd slog/benchmarks/zap_benchmarks && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd slog/benchmarks/zerolog_benchmarks && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd sumdb && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none) (cd typeparams && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none) Change-Id: Ie23c95ee2756307b8dff2e2fcd18a7fa882a1db2 Reviewed-on: https://go-review.googlesource.com/c/exp/+/649376 Reviewed-by: Roland Shoemaker <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Gopher Robot <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 939b2ce commit eff6e97

File tree

10 files changed

+11
-9
lines changed

10 files changed

+11
-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.16
3+
go 1.23.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.18
3+
go 1.23.0
44

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

event/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXf
3636
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
3737
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
3838
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
39+
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
3940
github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
4041
github.com/yuin/goldmark v1.4.0/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
4142
go.opentelemetry.io/otel v1.21.0 h1:hzLeKBZEL7Okw2mGzZ0cc4k/A7Fta0uoPgaJCr8fsFc=
@@ -98,3 +99,4 @@ gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
9899
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
99100
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
100101
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
102+
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

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.22.0
3+
go 1.23.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.18
3+
go 1.23.0
44

55
require (
66
golang.org/x/exp/event v0.0.0-20220217172124-1812c5b45e43

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.18
3+
go 1.23.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.22.0
3+
go 1.23.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.22.0
3+
go 1.23.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.12
3+
go 1.23.0
44

55
require golang.org/x/crypto v0.0.0-20190313024323-a1f597ede03a

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.18
3+
go 1.23.0

0 commit comments

Comments
 (0)