-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
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
Implement the SemVer Expressions API #1
Milestone
Comments
ghost
assigned zafarkhaja
Mar 31, 2013
Came up with the following BNF grammar for the SemVer Expressions
|
Shipped as of version 0.7.0 [3c12426]. |
The BNF grammar update for the
|
This was referenced Nov 1, 2015
zafarkhaja
added
status/resolved
type/feature-request
scope/codebase
scope/documentation
and removed
type/enhancement
labels
Apr 15, 2023
A tiny update from the The diff -<boolean-op> ::= "&" | "|"
+<boolean-op> ::= "&" | "&&" | "|" | "||" The resulting BNF grammar
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The SemVer Expressions API shall consist of a single method
boolean Version.satisfies(String expr)
which will take a SemVer expression as its argument. Below are examples of what SemVer expressions might look like:The grammar of the SemVer Expressions is subject to further revision.
As a part of this issue, a SemVer expression parser needs to be implemented as well.
The text was updated successfully, but these errors were encountered: