diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/HowToRelease.txt | 7 | ||||
| -rw-r--r-- | doc/Makefile.am | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/doc/HowToRelease.txt b/doc/HowToRelease.txt index 48f2bce8..35514230 100644 --- a/doc/HowToRelease.txt +++ b/doc/HowToRelease.txt @@ -46,9 +46,10 @@ b) Make sure the source tree is in a releasable state ;-) - Are all branches & patches merged? Check GitHub issues, pull requests and milestones! - Run as many tests as you can! - - Is the AUTHORS file up to date? This command may be helpful: - "( grep '>$' AUTHORS; git shortlog -se | cut -c8- ) | grep -Ev \ - '(alex@barton.de|fw@strlen.de)' | LC_ALL=de_DE.UTF-8 sort -u" + - Is the AUTHORS.md file up to date? This command may be helpful: + "( grep '>$' AUTHORS.md; git shortlog -se|cut -c8-|sed 's/^/- /' ) \ + | grep -Ev '(alex@barton.de|fw@strlen.de)' \ + | LC_ALL=de_DE.UTF-8 sort -u" c) Update the files describing the new release: - ChangeLog diff --git a/doc/Makefile.am b/doc/Makefile.am index d82480e9..fd1cbfd6 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -39,7 +39,7 @@ doc_templates = sample-ngircd.conf.tmpl generated_docs = sample-ngircd.conf -toplevel_docs = ../AUTHORS ../COPYING ../ChangeLog ../INSTALL.md ../NEWS ../README.md +toplevel_docs = ../AUTHORS.md ../COPYING ../ChangeLog ../INSTALL.md ../NEWS ../README.md SUBDIRS = src |