This script is meant for lints to run against our markdown files
(README.md, BUILD.md maybe even CHANGELOG.md someday).
For now it checks that a README.md file documents all cargo features,
sample output:
epilys ~meli % python3 scripts/markdown_doc_lints.py melib/README.md melib/Cargo.toml
The following features are not mentioned in melib/README.md
- sqlite3-static add the following string in the Features section: <a name="sqlite3-static-feature">`sqlite3-static`</a>
Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
Add a helper script to generate a new release entry to add to
CHANGELOG.md when it's time to tag a new release.
Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
I run something similar to get each releases' contributor names, and
rust-bindgen happens to have this in a script, so let's import it.
Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>