-
Notifications
You must be signed in to change notification settings - Fork 28
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
pick the latest in order for dev-latest
#180
Conversation
dev-latest
CoverItUp Report
|
helpers.go
Outdated
@@ -224,7 +224,8 @@ func (gb *GoBrew) judgeVersion(version string) string { | |||
if len(judgedVersions) == 0 { | |||
return "None" | |||
} | |||
return judgedVersions[len(judgedVersions)-1] | |||
|
|||
return judgedVersions[0] |
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.
work in progress, still needs fixing
[]string{
"1.22rc1",
"1.22rc2",
"1.22.0",
}
CoverItUp Report
|
I was aware of this problem, but I've never used specifying a dev version myself. I explicitly specify the version that is required. |
Can you describe in words the algorithm for creating and using dev versions? |
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.
Now I get it, thanks!
Fixes #179
Semantic ordering is
I wonder if it ever worked actually. It had been there since the beginning.