CLI
The changelog-generator can be run from the command line by running pnpx
# show the helpchangelog-generator -h
# validate the changelogchangelog-generator --validate changelog.yml
# generate a markdown file# The output is printed to the terminal, to save it pipe it to a filechangelog-generator -g markdown changelog.yml > changelog.md
# generate a rpm changelog# The output is printed to the terminal, to save it pipe it to a filechangelog-generator --generator rpm --version 1.2.3 > changelog.rpm# equivalent in shorthand flagschangelog-generator -g rpm -v 1.2.3 > changelog.rpm
# generate a debian changelog# The output is printed to the terminal, to save it pipe it to a filechangelog-generator --generator debian --version 1.2.3 > changelog.debian# equivalent in shorthand flagschangelog-generator -g debian -v 1.2.3 > changelog.debian