From e2358f7edfc2944e34bc59cbe4b1cbff64412f21 Mon Sep 17 00:00:00 2001 From: welpo Date: Mon, 19 Feb 2024 19:45:12 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20misc(release):=20remove=20link?= =?UTF-8?q?=20comparison?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- release | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release b/release index 0f94b8f..9af514a 100644 --- a/release +++ b/release @@ -60,6 +60,8 @@ changelog=$(echo "$changelog" | sed -E 's/\*\(([^)]+)\)\* //g') changelog=$(echo "$changelog" | sed -E 's/\[\@([a-zA-Z0-9_]+)\]\(https:\/\/github\.com\/[a-zA-Z0-9_]+\)/@\1/g') # Remove markdown headers. changelog=$(echo "$changelog" | sed -E 's/^#+ //g') +# Remove version comparison lines. +changelog=$(echo "$changelog" | sed '/https:\/\/github\.com\/.*\/compare\/.*/d') # Create a signed and annotated tag. git tag -s -a "$VERSION_TAG" -m "Release $VERSION_TAG" -m "$changelog"