From 2ad61474967776b9e5ef116614408cf3a48097b4 Mon Sep 17 00:00:00 2001 From: Gareth Kirwan Date: Tue, 6 Feb 2024 06:53:36 +0100 Subject: [PATCH] build: Require go 1.21 (#1467) Our build toolchain is using 1.21 since #1313 This hides issues on 1.20 from go.mod Notably uses of implied Generics and slices package seem okay, but would fail for anyone running 1.20 locally --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 547b6c4e..d6e1cc5a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/thrasher-corp/gocryptotrader -go 1.20 +go 1.21 require ( github.com/buger/jsonparser v1.1.1