From 93126377d1e2b9cda38ef213dcdcc52887a802db Mon Sep 17 00:00:00 2001 From: Nathan Perkins Date: Mon, 11 Mar 2024 13:27:55 -0700 Subject: [PATCH] Revert go mod version to 1.20 (#14) This avoids new 1.21 go mod management behavior which automatically upgrades a module's go mod version based on dependencies. See https://github.com/mdlayher/socket/issues/13 for discussion --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index ca7cc11..58143c0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/mdlayher/socket -go 1.21 +go 1.20 require ( github.com/google/go-cmp v0.5.9