From 7199531c453a9d457aa4f0bf9d137f335afa9fcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Tue, 18 May 2021 17:05:11 +0200 Subject: [PATCH] Minor improvement in the release notes generation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Bompard --- news/_template.rst | 1 + news/get-authors.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/news/_template.rst b/news/_template.rst index 2952407cd..b9206cc3f 100644 --- a/news/_template.rst +++ b/news/_template.rst @@ -8,6 +8,7 @@ {%- endif -%} {%- endmacro -%} +Released on {{ versiondata.date }}. This is a {major|feature|bugfix} release that adds [short summary]. {% for section, _ in sections.items() %} diff --git a/news/get-authors.py b/news/get-authors.py index 3024d5c88..ab4e0538e 100755 --- a/news/get-authors.py +++ b/news/get-authors.py @@ -23,7 +23,7 @@ from subprocess import check_output -EXCLUDE = ["dependabot-preview[bot]", "Weblate (bot)"] +EXCLUDE = ["dependabot[bot]", "dependabot-preview[bot]", "Weblate (bot)"] last_tag = check_output( "git tag | sort -n | tail -n 1", shell=True, universal_newlines=True