feat: change minimum required Go version from 1.17 to 1.15

This commit is contained in:
2022-02-15 00:40:56 +00:00
parent 633e585c80
commit d17783937d

10
go.mod
View File

@@ -1,14 +1,10 @@
module github.com/romdo/gomockctx
go 1.17
require (
github.com/golang/mock v1.6.0
github.com/stretchr/testify v1.7.0
)
go 1.15
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/golang/mock v1.6.0
github.com/stretchr/testify v1.7.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)