We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Sure thing, no problem! Fixed.
Sorry, something went wrong.
No branches or pull requests
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.The text was updated successfully, but these errors were encountered: