zafarkhaja / jsemver

Java implementation of the SemVer Specification
MIT License
429 stars 82 forks source link

Support for Version Match Expressions #41

Closed buko closed 6 months ago

buko commented 6 years ago

Between jsemver and semver.java we have all the functionality we need. It would be great if we could combine them. What's nice about semver.java is the match expression language. You can express conditons like ">=1.0.0" and then test to see if a given Version "matches" this condition.

loganvolkers commented 5 years ago

Try this library, it seems to be more full featured and might help you: https://github.com/vdurmont/semver4j

Neither this library nor jknack/semver.java have been actively developed in a long time.

zafarkhaja commented 1 year ago

Hello @buko! Sorry it took me this long to get back to you.

If it's still relevant to you, could you please take a look at SemVer Expressions API (Ranges) and tell me if that's what you requested?