From 00f76bf186ae2d6f85d435547d1134b159e7f62e Mon Sep 17 00:00:00 2001 From: Jamie Tanna Date: Thu, 18 Jun 2026 13:51:24 +0100 Subject: [PATCH] chore: require 1.25.0 Instead of a `.9` release, which doesn't need to be required for our use-cases, we can keep it at the minimum setting to reduce unnecessary Go version bumps across our users. --- examples/go.mod | 2 +- go.mod | 2 +- internal/test/go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/go.mod b/examples/go.mod index 909480902..9b78d51cc 100644 --- a/examples/go.mod +++ b/examples/go.mod @@ -1,6 +1,6 @@ module github.com/oapi-codegen/oapi-codegen/v2/examples -go 1.25.9 +go 1.25.0 replace github.com/oapi-codegen/oapi-codegen/v2 => ../ diff --git a/go.mod b/go.mod index c28ff8129..756f79447 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/oapi-codegen/oapi-codegen/v2 -go 1.25.9 +go 1.25.0 require ( github.com/getkin/kin-openapi v0.140.0 diff --git a/internal/test/go.mod b/internal/test/go.mod index 8d111ae94..cef256132 100644 --- a/internal/test/go.mod +++ b/internal/test/go.mod @@ -1,6 +1,6 @@ module github.com/oapi-codegen/oapi-codegen/v2/internal/test -go 1.25.9 +go 1.25.0 replace github.com/oapi-codegen/oapi-codegen/v2 => ../../