hi there,
usually people download the latest golang version and start their new project with that version. the most recent version of golang is v1.25.
I guess this is what happened here and why your go.mod requires go v1.25.
lower the version to 1.21 or so. so that more people can use your software. not everyone is on the latest go version.
unless there is a really good reason to use v1.25 ofc.
just a tip.
for example: I cant go install snitch. because Im on alpine and the go version on stable alpine is 1.24. do you really need 1.25?
hi there,
usually people download the latest golang version and start their new project with that version. the most recent version of golang is v1.25.
I guess this is what happened here and why your go.mod requires go v1.25.
lower the version to 1.21 or so. so that more people can use your software. not everyone is on the latest go version.
unless there is a really good reason to use v1.25 ofc.
just a tip.
for example: I cant go install snitch. because Im on alpine and the go version on stable alpine is 1.24. do you really need 1.25?