From d4e80a7748eac5e83fd750bd4d9625badf4545fe Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Tue, 18 Oct 2022 20:13:31 +0200 Subject: Changes: Ready for 6.01 A few useful commands: List of contributors: $ git log man-pages-6.00..HEAD \ | grep '<.*@.*>' \ | sed 's/^ *//' \ | sed 's/[^:]*: //' \ | sort \ | uniq; List of new pages: $ git diff man-pages-6.00..HEAD \ | grep -A1 '^--- /dev/null' \ | grep -v -e '\--' -e '\--- /dev/null' \ | sed 's,+++ b/,,' \ | grep '^man' \ | xargs grep -l '^\.so ' \ | sed 's,.*/,,'; List of new links: $ git diff man-pages-6.00..HEAD \ | grep -A1 '^--- /dev/null' \ | grep -v -e '\--' -e '\--- /dev/null' \ | sed 's,+++ b/,,' \ | grep '^man' \ | xargs grep -L '^\.so ' \ | sed 's,.*/,,'; Signed-off-by: Alejandro Colomar --- Changes | 51 +++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 47 insertions(+), 4 deletions(-) diff --git a/Changes b/Changes index f77ee461a..2d268cb4c 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ -==================== Changes in man-pages-?.?? ==================== +==================== Changes in man-pages-6.01 ==================== -Released: ????-??-??, València +Released: 2022-10-18, Aldaya Contributors @@ -10,6 +10,22 @@ The following people contributed patches/fixes, reports, notes, ideas, and discussions that have been incorporated in changes in this release: +"G. Branden Robinson" +Agostino Sarubbo +Alejandro Colomar +Amir Goldstein +Darrick J. Wong +Eric Biggers +Grigoriy +Jakub Wilk +Jan Kara +Matthew Bobrowski +Michael Tokarev +Mike Gilbert +Nicolás A. Ortega Froysa +Pierre Labastie +Sam James +Steve Izma Apologies if I missed anyone! @@ -17,19 +33,46 @@ Apologies if I missed anyone! New and rewritten pages ----------------------- +EOF.3const + Newly documented interfaces in existing pages --------------------------------------------- +fanotify_mark.2 + FAN_MARK_IGNORE + +open.2, statx.2 + STATX_DIOALIGN -New and changed links ---------------------- +feature_test_macros.7 + _FORTIFY_SOURCE=3 + _TIME_BITS Global changes -------------- +- Build system: + + - Update manual page dates (TH 3rd argument) when creating the tarball + with 'make dist'. this removes the need for a tstamp commit before + each release. + + - Don't print spurious errors from the Makefile that are not relevant. + +- Manual pages' sections: + + - Title (.TH): + + - Remove the hardcoded date (TH 3rd argument), and replace it by a + placeholder that should be changed when creating the tarball. + This removes the need for a tstamp commit before each release. + Changes to individual pages --------------------------- +The manual pages (and other files in the repository) have been improved +beyond what this changelog covers. To learn more about changes applied +to individual pages, use git(1). -- cgit v1.2.3