From 892d4d7d1702a958360c8f00ac54f3c8c21021de Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Thu, 18 Apr 2024 20:29:23 -0700 Subject: [PATCH] fix: as of Go 1.21, toolchain versions must use the 1.N.P syntax Setting min toolchain to 1.21.0 for the gateway. see: https://go.dev/doc/toolchain#version --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index ab5ab5c..11d555f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/versity/versitygw -go 1.21 +go 1.21.0 require ( github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1