Generates changelog from Pull Requests merged since last release.
ghc generate --repository bartoszmajsak/github-changelog-generatorPull Requests will be grouped by labels defined for them. There are two special labels which are handled differently:
-
skip-changelogif present on the PR, it will not be included in the list -
dependencies, if PR is titled"build(deps): bump lib from X to Y"will only include the latest update in case of many since last release
Get latest ghc binary using simple download script:
curl -sL http://git.io/install-ghc | bash|
Tip
|
You can also specify the version and directory before downloading curl -sL http://git.io/install-ghc | bash -s — --version=v0.0.1 --dir=~/bin
|