diff --git a/scripts/release/relnotes.py b/scripts/release/relnotes.py index 402475a2932be4..fcdfb86ef29135 100644 --- a/scripts/release/relnotes.py +++ b/scripts/release/relnotes.py @@ -209,11 +209,13 @@ def get_external_authors_between(base, head): print("+", note) print() else: + print() for note in filtered_relnotes: print("+", note) print() print("Acknowledgements:") external_authors = get_external_authors_between(merge_base, "HEAD") + print() print("This release contains contributions from many people at Google" + ("." if not external_authors else f", as well as {external_authors}."))