release.sh: put the authors directly to the AUTHORS section

Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht 2016-06-07 17:24:27 +02:00
parent 871d6584f2
commit feda1f7a53

View File

@ -174,8 +174,8 @@ function get_git_who () {
# #
# $1: new version # $1: new version
# $2: shortlog # $2: shortlog
function changelog_template () { function changelog_template_part1 () {
debug 'in changelog_template' debug 'in changelog_template_part1'
cat <<EOF cat <<EOF
// vim: expandtab ts=2 syntax=markdown // vim: expandtab ts=2 syntax=markdown
@ -196,9 +196,12 @@ function changelog_template () {
#### Authors #### Authors
The authors of this release. EOF
// Use list syntax with '- '
function changelog_template_part2 () {
debug 'in changelog_template_part2'
cat <<EOF
#### Features #### Features
@ -230,9 +233,10 @@ function update_changelog () {
# Write Changelog excerpt. # Write Changelog excerpt.
if test ! -f "$TMP_CHANGELOG_EXCERPT" if test ! -f "$TMP_CHANGELOG_EXCERPT"
then then
changelog_template "$1" > "$TMP_CHANGELOG_EXCERPT" changelog_template_part1 "$1" > "$TMP_CHANGELOG_EXCERPT"
get_git_history "$2" >> "$TMP_CHANGELOG_EXCERPT"
get_git_who "$2" >> "$TMP_CHANGELOG_EXCERPT" get_git_who "$2" >> "$TMP_CHANGELOG_EXCERPT"
changelog_template_part2 >> "$TMP_CHANGELOG_EXCERPT"
get_git_history "$2" >> "$TMP_CHANGELOG_EXCERPT"
edit_file "the Changelog excerpt" $TMP_CHANGELOG_EXCERPT edit_file "the Changelog excerpt" $TMP_CHANGELOG_EXCERPT
# Remove comments. # Remove comments.