forked from openssl/openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reviewed-by: Tomas Mraz <[email protected]> Reviewed-by: Matthias St. Pierre <[email protected]> (Merged from openssl#11739)
- Loading branch information
Showing
5 changed files
with
53 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# markdownlint style rules for OpenSSL | ||
# See https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md | ||
|
||
all | ||
|
||
# Use --- and === for H1 and H2. | ||
rule 'MD003', :style => :setext_with_atx | ||
# Code blocks are indented | ||
rule 'MD046', :style => :indented | ||
|
||
# Bug in mdl, https://github.com/markdownlint/markdownlint/issues/313 | ||
exclude_rule 'MD007' | ||
|
||
exclude_rule 'MD004' # Unordered list style TODO(fix?) | ||
exclude_rule 'MD005' # Inconsistent indentation for list items at the same level | ||
exclude_rule 'MD006' # Consider starting bulleted lists at the beginning of the line | ||
exclude_rule 'MD014' # Dollar signs used before commands without showing output | ||
exclude_rule 'MD024' # Multiple headers with the same content | ||
exclude_rule 'MD025' # Multiple top level headers in the same document | ||
exclude_rule 'MD029' # Ordered list item prefix | ||
exclude_rule 'MD036' # Emphasis used instead of a header |