We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
[1.0,2.0]
1.0
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
Using
Requirement.buildIvy("[1.0,2.0]").isSatisfiedBy(Semver("1.0", Semver.SemverType.LOOSE))
in version 3.1.0 retuns false, but according to the ivy version-matchers specification, it should be true.
3.1.0
false
true
This is caused by this check:
semver4j/src/main/java/com/vdurmont/semver4j/Range.java
Line 34 in 7653e41
Where in the right-hand side of the ||, "1.0".isEquivalentTo("1.0.0") is checked, which then internally calls "1.0".isEqualTo("1.0.0").
||
"1.0".isEquivalentTo("1.0.0")
"1.0".isEqualTo("1.0.0")
This issue might be related to #59.
The text was updated successfully, but these errors were encountered:
@MarcelBochtler if you are still interesting, I've made copy of this lib and fix bug reported by you. Look for version 2.0.1
Sorry, something went wrong.
new Semver("1.0")
new Semver("1.0.0")
No branches or pull requests
Using
in version
3.1.0
retunsfalse
, but according to the ivy version-matchers specification, it should betrue
.This is caused by this check:
semver4j/src/main/java/com/vdurmont/semver4j/Range.java
Line 34 in 7653e41
Where in the right-hand side of the
||
,"1.0".isEquivalentTo("1.0.0")
is checked, which then internally calls"1.0".isEqualTo("1.0.0")
.This issue might be related to #59.
The text was updated successfully, but these errors were encountered: