Missmatching major version and semantic import version (SIV)
D1CED opened this issue · 3 comments
D1CED commented
Currently this module shows up on go.dev as having no version released https://pkg.go.dev/github.com/monoculum/formam.
This is because there is no release where the major version matches the import version.
The only change needed is to to add the suffix v3 to the module name declared in go.mod.
module github.com/monoculum/formam/v3
Of course a new minor release would be necessary too.
An effect this will have is that from now on people would need to use SIV when importing your module.
Cheers.
emilgpa commented
I hope I can do that these days. Thank you.