Hi, thank you for maintaining this package!
In v1.7.2, the go.mod file specifies the Go version as:
However, according to the Go modules specification, the Go version should follow the 1.23 format (without the patch version). Because of this, installing the latest version via go install fails with the following error:
go: github.com/rubenv/sql-migrate/...@latest (in github.com/rubenv/sql-migrate@v1.7.2): go.mod:3: invalid go version '1.23.0': must match format 1.23
Would you mind updating the go.mod to use go 1.23 instead?
Thanks in advance!