Skip to content

Commit

Permalink
RELNOTES: add build items (plus commands)
Browse files Browse the repository at this point in the history
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 (#5140)
      * build: fix file mode of shell scripts (644 -> 755) (#5206)
      * build: reduce autoconf input files from 32 to 2 (#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 #5140 #5206 #5219.

Relates to #5140 #5206 #5219.
  • Loading branch information
kmk3 committed Jul 12, 2022
1 parent 56aebe3 commit c9019bf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions RELNOTES
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
firejail (0.9.71) baseline; urgency=low
* work in progress
* build: deduplicate configure-time vars into new config files (#5140)
* build: fix file mode of shell scripts (644 -> 755) (#5206)
* build: reduce autoconf input files from 32 to 2 (#5219)
-- netblue30 <[email protected]> Sat, 11 Jun 2022 09:00:00 -0500

firejail (0.9.70) baseline; urgency=low
Expand Down

0 comments on commit c9019bf

Please sign in to comment.