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 new go modules feature expects tagged versions to be prefixed with a 'v'. Since the latest release, 1.7.0, is missing the prefix, the go command finds v1.5.0 as the latest version.
The text was updated successfully, but these errors were encountered:
One way we can do is to use the commit hash, like go get github.com/versent/unicreds@7135c85, this will create a pseudo-version name like v1.5.1-0.20180327234242-7135c859e003 (the pseudo-version name gets some more chars from the hash string). This is documented here
The new go modules feature expects tagged versions to be prefixed with a 'v'. Since the latest release, 1.7.0, is missing the prefix, the
go
command finds v1.5.0 as the latest version.The text was updated successfully, but these errors were encountered: