summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-12-17 17:42:33 +0100
committerPauli <pauli@openssl.org>2021-12-20 09:57:55 +1100
commit132ab70fd852729e7ce41ac7ef2cb2f9969f8b7e (patch)
treeff7e2d8405c8f58928ed7efc6b5b7f856445f162
parentceb5a16915f013ea1f6dd8c86ab3761b25e1c10d (diff)
Fix fixup postrelease scripts to avoid creating errors
Otherwise the NEWS.md and CHANGES.md will contain trailing spaces. Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17304)
-rw-r--r--dev/release-aux/fixup-CHANGES.md-postrelease.pl2
-rw-r--r--dev/release-aux/fixup-NEWS.md-postrelease.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/dev/release-aux/fixup-CHANGES.md-postrelease.pl b/dev/release-aux/fixup-CHANGES.md-postrelease.pl
index 0fb2e9134f..bb971898ca 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 ff41ab29df..9231872f89 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]
_____