-
I have a couple couple git repos where I'm getting https://github.com/hid-io/hid-io-core
I run the suggested command, commit the changes, but the warning doesn't go away (I've also tried running --allow-dirty instead). The only way I can get smart release to work on this git repo is if I generate the CHANGELOG.md separately (using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This happens if a changelog entry for a new version would be empty as no conventional commit affected the release. All it takes is to execute the suggested command and write a release note for the crates it mentions, I hope that helps. |
Beta Was this translation helpful? Give feedback.
This happens if a changelog entry for a new version would be empty as no conventional commit affected the release.
cargo smart-release
is quite adamant about writing something and I noticed as well that there seems to be no way around that. I still remember that I tried to 'nerf' it once but failed and now think it's probably OK to cater to its will 😅.All it takes is to execute the suggested command and write a release note for the crates it mentions,
hid-io-protocol
,hid-io-core
in this case. I usually writeA maintenance release without user-facing changes
right under the### Unreleased
headline.I hope that helps.