monoculum / formam

a package for decode form's values into struct in Go
Apache License 2.0
190 stars 19 forks source link

Missmatching major version and semantic import version (SIV) #47

Closed D1CED closed 3 years ago

D1CED commented 3 years ago

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 3 years ago

I hope I can do that these days. Thank you.

D1CED commented 3 years ago

Hi, thanks for merging #48. I'll close this when a version has been tagged and is recognized by pkg.go.dev just to verify that this worked properly.

Have a great weekend.

emilgpa commented 3 years ago

Great. Thanks you, @D1CED. Have a great weekend too.