From 714aa2569b8097f175d58290710a86eefe2098d0 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Thu, 17 Jul 2025 13:56:46 +0000 Subject: [PATCH] chore: update changelog extraction in release script to skip the section break line --- scripts/release-plz.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release-plz.sh b/scripts/release-plz.sh index 32865b8..9a9ed40 100755 --- a/scripts/release-plz.sh +++ b/scripts/release-plz.sh @@ -14,7 +14,7 @@ fi # Get the next version and changelog from git-cliff version="$(git cliff --bumped-version)" -changelog="$(git cliff --bump --unreleased --strip all)" +changelog="$(git cliff --bump --unreleased | tail -n +2)" if [ "${DRY_RUN:-1}" == 1 ]; then echo "version: $version"