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
We should accept the labels alpha, beta and rc labels (using this precedence).
alpha
beta
rc
Examples:
cargo v alpha
This command will add a -alpha.1 next to patch version or increase the number after -alpha..
-alpha.1
patch
-alpha.
1.0.0
1.0.0-alpha.1
1.0.0-alpha.2
1.0.0-alpha.3
1.0.0-beta.1
The same can be done with beta and rc labels.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We should accept the labels
alpha
,beta
andrc
labels (using this precedence).Examples:
This command will add a
-alpha.1
next topatch
version or increase the number after-alpha.
.1.0.0
, the result must be1.0.0-alpha.1
.1.0.0-alpha.2
, the result must be1.0.0-alpha.3
;1.0.0-beta.1
, the command above should result in an error: you can't decrease a version.The same can be done with
beta
andrc
labels.The text was updated successfully, but these errors were encountered: