diff options
| author | Mitchell Cash <[email protected]> | 2018-07-18 22:03:26 +1000 |
|---|---|---|
| committer | Mitchell Cash <[email protected]> | 2018-07-19 16:03:00 +1000 |
| commit | 95464c7519ca2b4eb9d2825518b6a75b5ddb7e87 (patch) | |
| tree | da8945d752437baa553dfb594f6ccf44f639360b /doc/release-process.md | |
| parent | doc: Update broken links to now point to gitian-build.py (diff) | |
| download | discoin-95464c7519ca2b4eb9d2825518b6a75b5ddb7e87.tar.xz discoin-95464c7519ca2b4eb9d2825518b6a75b5ddb7e87.zip | |
doc: Improve command to generate list of authors for release notes
- Remove dependency on sed (sed was overkill when you can just add plain
text to the git log --format command)
- Sort resulting list of authors alphabetically (case-insensitive)
- Provide an example of how to only generate authors between versions
Diffstat (limited to 'doc/release-process.md')
| -rw-r--r-- | doc/release-process.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/release-process.md b/doc/release-process.md index 1e705898f..3ba622ee6 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -50,7 +50,7 @@ and sort them into categories based on labels) Generate list of authors: - git log --format='%aN' "$*" | sort -ui | sed -e 's/^/- /' + git log --format='- %aN' v(current version, e.g. 0.16.0)..v(new version, e.g. 0.16.1) | sort -fiu Tag version (or release candidate) in git |