Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RELNOTES: add build items (plus commands)
The following leverages the fact that when using a normal merge (as opposed to "rebase and merge" or "squash and merge") on GitHub, the pull request number is put in the commit message title and the title of the PR is added to the commit message body. Commands used to find and print the items for the RELNOTES: $ git log --grep='^build:' --merges --reverse --pretty='%s %b' 0.9.70.. | sed -E -n 's/Merge pull request (#[0-9]+) from [^ ]+ (.*)/ * \2 (\1)/p' * build: deduplicate configure-time vars into new config files (netblue30#5140) * build: fix file mode of shell scripts (644 -> 755) (netblue30#5206) * build: reduce autoconf input files from 32 to 2 (netblue30#5219) Commands used to generate the message below: $ git log --grep='^build:' --merges --reverse --pretty='%s %b' 0.9.70.. | sed -E -n 's/Merge pull request (#[0-9]+).*/\1/p' | sort | tr '\n' ' ' | sed -E 's/^(.*) /Relates to \1./' Relates to netblue30#5140 netblue30#5206 netblue30#5219. Relates to netblue30#5140 netblue30#5206 netblue30#5219.
- Loading branch information