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
See #110 (comment) - we should add validation of this to the JSON schema for CI.
Would this work @bentsherman ? https://semver.org/#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string
^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
Though maybe that's too permissive: https://regex101.com/r/RlYsCm/1
Would a simpler one ok?
^(\d+\.)?(\d+\.)?(\*|\d+)(-\w+)?$
(must be a 3-part numeric, with optional hyphen+alphanumerics at the end)
https://regex101.com/r/1fcwZM/1
The text was updated successfully, but these errors were encountered:
For reference, the plugin framework used by Nextflow (pf4j) uses SemVer for plugin versions. Specifically, the jsemver library.
Sorry, something went wrong.
No branches or pull requests
See #110 (comment) - we should add validation of this to the JSON schema for CI.
Would this work @bentsherman ? https://semver.org/#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string
Though maybe that's too permissive: https://regex101.com/r/RlYsCm/1
Would a simpler one ok?
(must be a 3-part numeric, with optional hyphen+alphanumerics at the end)
https://regex101.com/r/1fcwZM/1
The text was updated successfully, but these errors were encountered: