semver-check
semver-check copied to clipboard
[Feature Request] Support validation against range of values
now there is 1 to 1 restriction to value, it would be awesome to be able to specify range of values and test it against same restriction.
e.g.
pattern | value | is valid |
---|---|---|
^1.0.0 |
1.0.0 |
✅ |
1.0.1 |
✅ | |
1.1.0 |
✅ | |
0.0.1 |
🔴 | |
2.0.0 |
🔴 |