-
Notifications
You must be signed in to change notification settings - Fork 229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go.mod doesn't follow requirements #125
Comments
So let's make a PR for this? Change |
I bumped into this also. Might as well bump to v6 because of this issue. From https://github.com/golang/go/wiki/Modules#releasing-modules-v2-or-higher
dbus hasn't really adopted modules correctly yet, so I think pushing to v6 is the right move here. |
I'll make a PR for this. A simple one-liner. It will need to be released under tag |
Currently, the
go.mod
of godbus looks like this:and we have a tag called v5.0. This doesn't work for Go modules. Every version must include a major, a minor and a patch number (e.g., v5.0.0):
Furthermore, modules that are v2 or higher should have a branch for the major version and must include
/vX
in their module path:Otherwise it's impossible to correctly import godbus as a module.
The text was updated successfully, but these errors were encountered: