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
Using
compile 'com.vdurmont:semver4j:2.0.3'
Semver A = new Semver("2.0", Semver.SemverType.LOOSE); Semver B = new Semver("2.0.0", Semver.SemverType.LOOSE); A.isGreaterThan(B); // -> false B.isGreaterThan(A); // -> false B.isEquivalentTo(A); // -> false A.isEquivalentTo(B); // -> false B.isLowerThan(A); // -> true A.isLowerThan(B); // -> true
Original issue: vdurmont/semver4j#15
The text was updated successfully, but these errors were encountered:
Add test case to close issue #38
a65acda
a987027
piotrooo
Successfully merging a pull request may close this issue.
Using
Original issue: vdurmont/semver4j#15
The text was updated successfully, but these errors were encountered: