From fd381231520317fbb0d3f094e3d8506f866428b5 Mon Sep 17 00:00:00 2001 From: Mike Vincent Date: Mon, 22 Jun 2026 09:37:30 -0500 Subject: [PATCH] Bump go toolchain: 1.24 -> 1.25 Raise the module Go floor from 1.24.0 to 1.25.0 so newer OpenTelemetry dependency updates can be accepted. Set the preferred toolchain to go1.25.11, the latest Go 1.25 patch release, while keeping the minimum supported version at 1.25.0. Verified with: - go mod tidy - make test --- go.mod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index c25b948..4b02055 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ module github.com/simplifi/anemometer -go 1.24.0 +go 1.25.0 -toolchain go1.24.2 +toolchain go1.25.11 require ( github.com/DataDog/datadog-go/v5 v5.8.1