From 2e3b2a37c79bda47db7fd2d59ae0934096f763e6 Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Wed, 5 Jun 2024 11:19:00 -0700 Subject: [PATCH] Revert Go version to 1.22.0 This is a library so it will be compiled with the version specified in the project that imports it. This also is treated by Go as a minimum suggested version and we should only increase it if we need new features from the language. Bumping this to the latest version only means that the projects importing it will be forced to update to the same version. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 90281ee..dd9a7e8 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/nginxinc/telemetry-exporter -go 1.22.4 +go 1.22.0 require ( github.com/go-logr/logr v1.4.2