From 69ef0b0869d4d55438fed35aa50094fbaeabc062 Mon Sep 17 00:00:00 2001 From: Frederic BIDON Date: Sun, 15 Mar 2026 23:42:26 +0100 Subject: [PATCH] chore: bump go directive to 1.25.0 Update all go.mod (and go.work where applicable) to require go 1.25.0. Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Frederic BIDON --- codegen/go.mod | 4 +--- enable/colors/go.mod | 2 +- enable/yaml/go.mod | 2 +- go.mod | 2 +- go.work | 2 +- hack/migrate-testify/go.mod | 2 +- internal/testintegration/go.mod | 2 +- 7 files changed, 7 insertions(+), 9 deletions(-) diff --git a/codegen/go.mod b/codegen/go.mod index ad8c19c9b..512a169a0 100644 --- a/codegen/go.mod +++ b/codegen/go.mod @@ -1,8 +1,6 @@ module github.com/go-openapi/testify/codegen/v2 -go 1.24.0 - -toolchain go1.25.0 +go 1.25.0 require ( golang.org/x/text v0.34.0 diff --git a/enable/colors/go.mod b/enable/colors/go.mod index cb9b06fd5..51583aa3e 100644 --- a/enable/colors/go.mod +++ b/enable/colors/go.mod @@ -9,4 +9,4 @@ require golang.org/x/sys v0.41.0 // indirect replace github.com/go-openapi/testify/v2 => ../.. -go 1.24.0 +go 1.25.0 diff --git a/enable/yaml/go.mod b/enable/yaml/go.mod index d2d3c12ae..fa05f6a0c 100644 --- a/enable/yaml/go.mod +++ b/enable/yaml/go.mod @@ -7,4 +7,4 @@ require ( replace github.com/go-openapi/testify/v2 => ../.. -go 1.24.0 +go 1.25.0 diff --git a/go.mod b/go.mod index 731dbd094..1224f0212 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module github.com/go-openapi/testify/v2 retract v2.0.0 -go 1.24.0 +go 1.25.0 diff --git a/go.work b/go.work index 8db6c6486..95c5740ea 100644 --- a/go.work +++ b/go.work @@ -7,4 +7,4 @@ use ( ./internal/testintegration ) -go 1.24.0 +go 1.25.0 diff --git a/hack/migrate-testify/go.mod b/hack/migrate-testify/go.mod index b649e7d55..92de30de8 100644 --- a/hack/migrate-testify/go.mod +++ b/hack/migrate-testify/go.mod @@ -1,6 +1,6 @@ module github.com/go-openapi/testify/hack/migrate-testify/v2 -go 1.24.0 +go 1.25.0 require ( golang.org/x/mod v0.33.0 diff --git a/internal/testintegration/go.mod b/internal/testintegration/go.mod index b6c5c6bb3..bbb540623 100644 --- a/internal/testintegration/go.mod +++ b/internal/testintegration/go.mod @@ -1,6 +1,6 @@ module github.com/go-openapi/testify/v2/internal/testintegration/v2 -go 1.24.0 +go 1.25.0 require ( github.com/go-openapi/testify/enable/colors/v2 v2.4.0