You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Rust application and I would like to pump the version in my Cargo.toml each time I make a new release.
My version field resides under workspace.package.version, every time I try to pump the version bumper seems to reformat the whole file into a different format:
Adding indentations.
Splitting dependencies into workspace.dependencies.serde and so on.
Desired solution
Nothing should change except for the version.
Workaround
I had to install another crate ( cargo-edit ) with an after:bump hook to update the version.
The text was updated successfully, but these errors were encountered:
Problem
I have a Rust application and I would like to pump the version in my
Cargo.toml
each time I make a new release.My
version
field resides underworkspace.package.version
, every time I try to pump the version bumper seems to reformat the whole file into a different format:workspace.dependencies.serde
and so on.Desired solution
Nothing should change except for the version.
Workaround
I had to install another crate (
cargo-edit
) with anafter:bump
hook to update the version.The text was updated successfully, but these errors were encountered: