We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
While i m working on the cli, i found out a weird behavior about constraints when using a pattern starting with a major = 0
Please see:
$ go run main.go -filter 1.x -sort 2.6.5 "1.1.1" 1.1.2 0.0.5 1.1.1 1.1.2 [mh-cbon@pc15-home cli] $ go run main.go -filter 1.x.x -sort 2.6.5 "1.1.1" 1.1.2 0.0.5 1.1.1 1.1.2 [mh-cbon@pc15-home cli] $ go run main.go -filter 0.x.x -sort 2.6.5 "1.1.1" 1.1.2 0.0.5 0.0.5 1.1.1 1.1.2 2.6.5 [mh-cbon@pc15-home cli] $ go run main.go -filter 0.x -sort 2.6.5 "1.1.1" 1.1.2 0.0.5 0.0.5 1.1.1 1.1.2 2.6.5 [mh-cbon@pc15-home cli] $ go run main.go -filter 2.x -sort 2.6.5 "1.1.1" 1.1.2 0.0.5 2.6.5
The text was updated successfully, but these errors were encountered:
@mh-cbon You found a bug! Thanks.
Sorry, something went wrong.
d66a420
Merge pull request #49 from Masterminds/fix/46
0a299be
Fixed #46: Fixed 0.x.x and 0.0.x in constraints being treated as *
Fixed Masterminds#46: Fixed 0.x.x and 0.0.x in constraints being trea…
062ad5e
…ted as *
No branches or pull requests
Hi,
While i m working on the cli, i found out a weird behavior about constraints when using a pattern starting with a major = 0
Please see:
The text was updated successfully, but these errors were encountered: