From 54ddc18b46402c4553e06b3701e74789b1187546 Mon Sep 17 00:00:00 2001 From: Philip Potter Date: Mon, 6 Jan 2025 10:17:47 +0000 Subject: [PATCH] require go 1.23 (#168) This updates our library to require go 1.23. If we bump all our dependencies, we have an indirect dependency on go 1.22.7: go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp@v1.33.0 requires go >= 1.22.7 We want to use 1.23 everywhere anyway (except replicate-go, but that doesn't depend on this library). --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index fc6a19f..d2081f9 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/replicate/go -go 1.22 +go 1.23 require ( github.com/alicebob/miniredis/v2 v2.34.0