From 52a313463780e70088e208f376f28ce437a8b992 Mon Sep 17 00:00:00 2001 From: Donncha O Caoimh <5656673+donnchawp@users.noreply.github.com> Date: Tue, 14 Apr 2026 16:43:35 +0100 Subject: [PATCH] Drop brackets from generated changelog heading The release script in scripts/publish.sh extracts the changelog block with the awk pattern `^### ( |$|-)`, which does not match `### []`. Generate the heading as `### VERSION - DATE` so publish.sh can find it. --- scripts/pre-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pre-build.sh b/scripts/pre-build.sh index d7fa7a95..697ecf58 100755 --- a/scripts/pre-build.sh +++ b/scripts/pre-build.sh @@ -81,7 +81,7 @@ else fi TODAY="$(date +%Y-%m-%d)" { - echo "### [$VERSION] - $TODAY" + echo "### $VERSION - $TODAY" gh pr list \ --state merged \ --base trunk \