diff --git a/HOWTO.md b/HOWTO.md index 1854395685..d93732d4d4 100644 --- a/HOWTO.md +++ b/HOWTO.md @@ -324,31 +324,31 @@ cargo install cargo-release make dist-rust ``` -If that doesn't work (consider fixing the make target), otherwise try releasing -`sbp` and `sbp2json` crates separately, first `sbp`, this will do a dry run -first: +If that doesn't work (**status** it don't work, consider fixing the make target), +otherwise try releasing `sbp` and `sbp2json` crates separately, first `sbp`, +this will do a dry run first: ``` -cargo release --package sbp +cargo release --exclude sbp2json ``` Then use `--execute` to actually run the release: ``` -cargo release --package sbp --execute +cargo release --exclude sbp2json --execute ``` Next, release `sbp2son`, first do a dry-run: ``` -cargo release --package sbp2json +cargo release --exclude sbp ``` Then, reset any modifications from the dry run, and then actually release `sbp2son`: ``` git checkout . -cargo release --package sbp2json --execute +cargo release --exclude sbp --execute ``` Then rollback any commits that are created: