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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The reason will be displayed to describe this comment to others. Learn more.
Hi, thanks for adding this. Have you run vgo with this? I would have expected it to replace v1.1 with v1.1.0 during reformatting. If not, that's a bug in vgo. Semver must be three numbers. (And you also need tags with exactly three numbers; if the GitHub tag is v1.1 it will be ignored.)
The reason will be displayed to describe this comment to others. Learn more.
I ran into a problem with this .0 missing from the tag. Also with tags vX.Y (no .Z) being selected from other packages with only tags and no go.mod file.
I also couldn't overwrite them from my projects go.mod file and so had to make a local fork and publish a tag on it to get my program to resolve its dependencies with vgo. here is my go.mod file.
7087b4d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, thanks for adding this. Have you run vgo with this? I would have expected it to replace v1.1 with v1.1.0 during reformatting. If not, that's a bug in vgo. Semver must be three numbers. (And you also need tags with exactly three numbers; if the GitHub tag is v1.1 it will be ignored.)
7087b4d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rsc yes, I generated this with
vgo build
... using b6ca6ae975e2b066c002388a896833851a9e54a9 of vgo7087b4d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting, thanks. Not sure, but perhaps a bug.
7087b4d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I ran into a problem with this
.0
missing from the tag. Also with tagsvX.Y
(no .Z) being selected from other packages with only tags and no go.mod file.I also couldn't overwrite them from my projects go.mod file and so had to make a local fork and publish a tag on it to get my program to resolve its dependencies with vgo. here is my go.mod file.