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
As in https://semver.org/ stated a pre-release (alpha, beta, rc) is appended by a series of dot-separated identifiers:
<pre-release> ::= <dot-separated pre-release identifiers> <dot-separated build identifiers> ::= <build identifier> | <build identifier> "." <dot-separated build identifiers>
Currently pre-releases are not separated with dot-separated identifiers. So instead of 2.11.7-rc1 it should be 2.11.7-rc.1
2.11.7-rc1
2.11.7-rc.1
The text was updated successfully, but these errors were encountered:
Thx for pointing this out. I will have a look at it
Sorry, something went wrong.
Any chance the dot will be in next release (1.0.4)?
dee875d
just released within version 1.1.0
No branches or pull requests
As in https://semver.org/ stated a pre-release (alpha, beta, rc) is appended by a series of dot-separated identifiers:
Currently pre-releases are not separated with dot-separated identifiers. So instead of
2.11.7-rc1
it should be2.11.7-rc.1
The text was updated successfully, but these errors were encountered: