Skip to content

Commit

Permalink
fix: bump go version to 1.17 (#666)
Browse files Browse the repository at this point in the history
Due to our test dependency requiring 1.17 minimum and the 1.16 being
well out of support, currently only 1.21 and 1.22 are support releases,
bump our required go version to 1.16.

Fixes #665
  • Loading branch information
stevenh committed Feb 25, 2024
1 parent 162ed02 commit e05a63b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion go.mod
@@ -1,9 +1,15 @@
module github.com/gomodule/redigo

go 1.16
go 1.17

require github.com/stretchr/testify v1.8.4

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

retract (
v2.0.0+incompatible // Old development version not maintained or published.
v1.8.10 // Incorrect version tag for feature.
Expand Down

0 comments on commit e05a63b

Please sign in to comment.