You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project's tags contain only major and minor parts (no patch part), rendering them SemVer-incompatible. As a result, Go tooling does not recognize those versions.
> go install github.com/visma-prodsec/confused/[email protected]
go: github.com/visma-prodsec/confused/[email protected]: no matching versions for query "v0.5"
The project's tags contain only major and minor parts (no patch part), rendering them SemVer-incompatible. As a result, Go tooling does not recognize those versions.
This can also be seen on https://pkg.go.dev/github.com/visma-prodsec/confused?tab=versions
Looking at the guide, the solution is to recreate tags to contain all three parts, eg.
v0.5.0
, and use all parts for future tags.The text was updated successfully, but these errors were encountered: