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
It assumes if there is single crate, even if the user in purpose provided the --workspace argument, that will use the single crate mode, but it does not fetches the crate name correctly.
Expected fixes
Honour the --workspace argument and do not default to crate mode if len is 1, or,
Provide the name of the crate correctly in the commit message.
Extras:
Ideally, the --workspace argument should generate a commit listing all packages and their versions.
The text was updated successfully, but these errors were encountered:
Summary
If a virtual workspace only contains a single crate, and the following line is run:
It produces the following commit message:
Expected
The expectation would be to use the single crate name, or, the list of crates and versions.
Root-cause
The following line introduces the issue:
cargo-release/src/config.rs
Line 460 in 9a4e0ce
It assumes if there is single crate, even if the user in purpose provided the
--workspace
argument, that will use the single crate mode, but it does not fetches the crate name correctly.Expected fixes
--workspace
argument and do not default to crate mode if len is 1, or,Extras:
Ideally, the
--workspace
argument should generate a commit listing all packages and their versions.The text was updated successfully, but these errors were encountered: