Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/34504 )
Change subject: util/release/genrelnotes: Emit more markdown-ish output ......................................................................
util/release/genrelnotes: Emit more markdown-ish output
It's better to format lists with bullet points.
Change-Id: I503ef2dea9146d67c220236b8a5b64c2ba2d794f Signed-off-by: Patrick Georgi pgeorgi@google.com --- M util/release/genrelnotes 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/04/34504/1
diff --git a/util/release/genrelnotes b/util/release/genrelnotes index e4f304b..c9ca549 100755 --- a/util/release/genrelnotes +++ b/util/release/genrelnotes @@ -202,12 +202,12 @@ local new local old
- new="$(comm -13 <(echo "$2") <(echo "$3"))" + new="$(comm -13 <(echo "$2") <(echo "$3") | sed 's/^/* /')" if [ -n "$new" ]; then printf "Added %s $1:\n-------------------\n%s\n\n" \ "$(echo "$new" | wc -l)" "$new" >> "$LOGFILE" fi - old="$(comm -23 <(echo "$2") <(echo "$3"))" + new="$(comm -23 <(echo "$2") <(echo "$3") | sed 's/^/* /')" if [ -n "$old" ]; then printf "Removed %s $1:\n-------------------\n%s\n\n" \ "$(echo "$old" | wc -l)" "$old" >> "$LOGFILE"
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34504 )
Change subject: util/release/genrelnotes: Emit more markdown-ish output ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/34504/1/util/release/genrelnotes File util/release/genrelnotes:
https://review.coreboot.org/c/coreboot/+/34504/1/util/release/genrelnotes@21... PS1, Line 210: new was "old", is it intentional ?
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/34504
to look at the new patch set (#2).
Change subject: util/release/genrelnotes: Emit more markdown-ish output ......................................................................
util/release/genrelnotes: Emit more markdown-ish output
It's better to format lists with bullet points.
Change-Id: I503ef2dea9146d67c220236b8a5b64c2ba2d794f Signed-off-by: Patrick Georgi pgeorgi@google.com --- M util/release/genrelnotes 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/04/34504/2
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34504 )
Change subject: util/release/genrelnotes: Emit more markdown-ish output ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/34504/1/util/release/genrelnotes File util/release/genrelnotes:
https://review.coreboot.org/c/coreboot/+/34504/1/util/release/genrelnotes@21... PS1, Line 210: new
was "old", is it intentional ?
Good catch, fixed.
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34504 )
Change subject: util/release/genrelnotes: Emit more markdown-ish output ......................................................................
Patch Set 2: Code-Review+1
Martin Roth has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34504 )
Change subject: util/release/genrelnotes: Emit more markdown-ish output ......................................................................
Patch Set 3: Code-Review+2
Patrick Georgi has submitted this change and it was merged. ( https://review.coreboot.org/c/coreboot/+/34504 )
Change subject: util/release/genrelnotes: Emit more markdown-ish output ......................................................................
util/release/genrelnotes: Emit more markdown-ish output
It's better to format lists with bullet points.
Change-Id: I503ef2dea9146d67c220236b8a5b64c2ba2d794f Signed-off-by: Patrick Georgi pgeorgi@google.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/34504 Reviewed-by: Martin Roth martinroth@google.com Reviewed-by: Paul Menzel paulepanter@users.sourceforge.net Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M util/release/genrelnotes 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Martin Roth: Looks good to me, approved Paul Menzel: Looks good to me, but someone else must approve
diff --git a/util/release/genrelnotes b/util/release/genrelnotes index e4f304b..2867cbf 100755 --- a/util/release/genrelnotes +++ b/util/release/genrelnotes @@ -202,12 +202,12 @@ local new local old
- new="$(comm -13 <(echo "$2") <(echo "$3"))" + new="$(comm -13 <(echo "$2") <(echo "$3") | sed 's/^/* /')" if [ -n "$new" ]; then printf "Added %s $1:\n-------------------\n%s\n\n" \ "$(echo "$new" | wc -l)" "$new" >> "$LOGFILE" fi - old="$(comm -23 <(echo "$2") <(echo "$3"))" + old="$(comm -23 <(echo "$2") <(echo "$3") | sed 's/^/* /')" if [ -n "$old" ]; then printf "Removed %s $1:\n-------------------\n%s\n\n" \ "$(echo "$old" | wc -l)" "$old" >> "$LOGFILE"