Closed stgraber closed 1 year ago
For Incus (ex-LXD), we like supporting the past two major Go versions, that is, 1.20 and 1.21 currently.
Your recent change to introduce a go.mod came with you setting a minimal version of go 1.21.1 which is therefore breaking us.
go.mod
go 1.21.1
I don't see any reason for petname to require 1.21.1, so you should be able to just go mod tidy --go=1.20 to set the base version to 1.20.
go mod tidy --go=1.20
Sure thing, no problem! Fixed.
For Incus (ex-LXD), we like supporting the past two major Go versions, that is, 1.20 and 1.21 currently.
Your recent change to introduce a
go.mod
came with you setting a minimal version ofgo 1.21.1
which is therefore breaking us.I don't see any reason for petname to require 1.21.1, so you should be able to just
go mod tidy --go=1.20
to set the base version to 1.20.