You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
420 B
7 lines
420 B
#!/bin/sh
|
|
# Usage: gen-changelog [comittish]
|
|
# Reads all the commits since comittish and produces changelog entries in
|
|
# our style as best as it can, appendning them to CHANGELOG.md. If it
|
|
# encounters a git error it won't modify CHANGELOG.md
|
|
# @iarna uses this as the first step in producing changelogs for a release.
|
|
(node $(npm prefix)/scripts/changelog.js "$@"; cat CHANGELOG.md) > new.md && mv new.md CHANGELOG.md
|