From: Tomas Mraz Date: Fri, 17 Dec 2021 16:42:33 +0000 (+0100) Subject: Fix fixup postrelease scripts to avoid creating errors X-Git-Tag: openssl-3.2.0-alpha1~3176 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d4c52320d245be80bd69346fdda4b12b4961eae;p=thirdparty%2Fopenssl.git Fix fixup postrelease scripts to avoid creating errors Otherwise the NEWS.md and CHANGES.md will contain trailing spaces. Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/17304) (cherry picked from commit 132ab70fd852729e7ce41ac7ef2cb2f9969f8b7e) --- diff --git a/dev/release-aux/fixup-CHANGES.md-postrelease.pl b/dev/release-aux/fixup-CHANGES.md-postrelease.pl index 0fb2e9134f9..bb971898ca2 100644 --- a/dev/release-aux/fixup-CHANGES.md-postrelease.pl +++ b/dev/release-aux/fixup-CHANGES.md-postrelease.pl @@ -20,7 +20,7 @@ if (/^### Changes between (\S+) and (\S+) \[xx XXX xxxx\]/ $_ = <<_____ ### Changes between $v2 and $RELEASE_TEXT [xx XXX xxxx] - * + * none yet ### Changes between $v1 and $v2 [$PREV_RELEASE_DATE] _____ diff --git a/dev/release-aux/fixup-NEWS.md-postrelease.pl b/dev/release-aux/fixup-NEWS.md-postrelease.pl index ff41ab29df5..9231872f89c 100644 --- a/dev/release-aux/fixup-NEWS.md-postrelease.pl +++ b/dev/release-aux/fixup-NEWS.md-postrelease.pl @@ -20,7 +20,7 @@ if (/^### Major changes between OpenSSL (\S+) and OpenSSL (\S+) \[under developm $_ = <<_____ ### Major changes between OpenSSL $v2 and OpenSSL $RELEASE_TEXT [under development] - * + * none ### Major changes between OpenSSL $v1 and OpenSSL $v2 [$PREV_RELEASE_DATE] _____