summaryrefslogtreecommitdiffstats
path: root/dev
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2020-05-07 13:42:14 +0200
committerDr. Matthias St. Pierre <matthias.st.pierre@ncp-e.com>2020-05-08 16:22:01 +0200
commit4ef0ddc9d8ee829bf9dceae73f7a48a55f512739 (patch)
treee6728549dba049dde24e4dcf8e1859475255bfc1 /dev
parentc7fa92979c5964966efa298bf2a40ff451ee7482 (diff)
travis: enable markdownlint checks
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/11739)
Diffstat (limited to 'dev')
-rw-r--r--dev/release-aux/README.md42
-rw-r--r--dev/release-aux/fixup-CHANGES.md-postrelease.pl4
-rw-r--r--dev/release-aux/fixup-NEWS.md-postrelease.pl4
3 files changed, 25 insertions, 25 deletions
diff --git a/dev/release-aux/README.md b/dev/release-aux/README.md
index 9d05ae5f98..01c5a20773 100644
--- a/dev/release-aux/README.md
+++ b/dev/release-aux/README.md
@@ -1,30 +1,30 @@
Auxilliary files for dev/release.sh
===================================
-- release-state-fn.sh
+- release-state-fn.sh
- This is the main version and state update logic... you could say
- that it's the innermost engine for the release mechanism. It
- tries to be agnostic of versioning schemes, and relies on
- release-version-fn.sh to supply necessary functions that are
- specific for versioning schemes.
-
-- release-version-fn.sh
+ This is the main version and state update logic... you could say
+ that it's the innermost engine for the release mechanism. It
+ tries to be agnostic of versioning schemes, and relies on
+ release-version-fn.sh to supply necessary functions that are
+ specific for versioning schemes.
- Supplies functions that are specific to versioning schemes:
-
- get_version() gets the version data from appropriate files.
+- release-version-fn.sh
- set_version() writes the version data to appropriate files.
+ Supplies functions that are specific to versioning schemes:
- fixup_version() updates the version data, given a first argument
- that instructs it what update to do.
-
-- openssl-announce-pre-release.tmpl and openssl-announce-release.tmpl
+ get_version() gets the version data from appropriate files.
- Templates for announcements
-
-- fixup-*-release.pl and fixup-*-postrelease.pl
+ set_version() writes the version data to appropriate files.
- Fixup scripts for specific files, to be done for the release
- commit and for the post-release commit.
+ fixup_version() updates the version data, given a first argument
+ that instructs it what update to do.
+
+- openssl-announce-pre-release.tmpl and openssl-announce-release.tmpl
+
+ Templates for announcements
+
+- fixup-*-release.pl and fixup-*-postrelease.pl
+
+ Fixup scripts for specific files, to be done for the release
+ commit and for the post-release commit.
diff --git a/dev/release-aux/fixup-CHANGES.md-postrelease.pl b/dev/release-aux/fixup-CHANGES.md-postrelease.pl
index 6592635dc3..0fb2e9134f 100644
--- a/dev/release-aux/fixup-CHANGES.md-postrelease.pl
+++ b/dev/release-aux/fixup-CHANGES.md-postrelease.pl
@@ -18,11 +18,11 @@ if (/^### Changes between (\S+) and (\S+) \[xx XXX xxxx\]/
# If this is a pre-release, we do nothing
if ($RELEASE !~ /^\d+\.\d+\.\d+-(?:alpha|beta)/) {
$_ = <<_____
-### Changes between $v2 and $RELEASE_TEXT [xx XXX xxxx] ###
+### Changes between $v2 and $RELEASE_TEXT [xx XXX xxxx]
*
-### Changes between $v1 and $v2 [$PREV_RELEASE_DATE] ###
+### 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 b1d47264b0..ff41ab29df 100644
--- a/dev/release-aux/fixup-NEWS.md-postrelease.pl
+++ b/dev/release-aux/fixup-NEWS.md-postrelease.pl
@@ -18,11 +18,11 @@ if (/^### Major changes between OpenSSL (\S+) and OpenSSL (\S+) \[under developm
# If this is a pre-release, we do nothing
if ($RELEASE !~ /^\d+\.\d+\.\d+-(?:alpha|beta)/) {
$_ = <<_____
-### Major changes between OpenSSL $v2 and OpenSSL $RELEASE_TEXT [under development] ###
+### Major changes between OpenSSL $v2 and OpenSSL $RELEASE_TEXT [under development]
*
-### Major changes between OpenSSL $v1 and OpenSSL $v2 [$PREV_RELEASE_DATE] ###
+### Major changes between OpenSSL $v1 and OpenSSL $v2 [$PREV_RELEASE_DATE]
_____
}
}