From 008618995107017a598d0cc5bd94bb6682483fa4 Mon Sep 17 00:00:00 2001 From: Daspoet Date: Thu, 26 Aug 2021 14:21:07 +0200 Subject: [PATCH] build(go.mod): change Go version to 1.17 --- go.mod | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index dcc62fa..995f053 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,11 @@ module github.com/gompus/snowflake -go 1.16 +go 1.17 + +require github.com/stretchr/testify v1.7.0 require ( - github.com/stretchr/objx v0.3.0 // indirect - github.com/stretchr/testify v1.7.0 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect )