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
I really like cargo-next as a way to update Cargo.toml version easily.
My one real problem is using the --minor option to update the minor component of the version does not reset the patch version to 0.
--minor
So, using cargo next --minor with a version of 0.3.7 gives 0.4.7 instead of the expected 0.4.0.
cargo next --minor
0.3.7
0.4.7
0.4.0
Of course, I checked the --major flag and found that the same problem exists there.
--major
The text was updated successfully, but these errors were encountered:
Added a PR with a fix: #12
Sorry, something went wrong.
No branches or pull requests
I really like cargo-next as a way to update Cargo.toml version easily.
My one real problem is using the
--minor
option to update the minor component of the version does not reset the patch version to 0.So, using
cargo next --minor
with a version of0.3.7
gives0.4.7
instead of the expected0.4.0
.Of course, I checked the
--major
flag and found that the same problem exists there.The text was updated successfully, but these errors were encountered: