paragraph of the Acknowledgements section. To get the amount of
changed files and number of lines use this command:
- $ git diff --shortstat v5.13.${last}..HEAD | \
- ./perl -Ilib -nE 'my ($files, $insert, $delete) = /(\d+)/ga; say "$files files and ", $insert + $delete, " lines changed"'
+ $ git diff --shortstat v5.15.0..HEAD | \
+ ./perl -Ilib -nE 'my ($files, $insert, $delete) = /(\d+)/ga; say $insert + $delete, " lines of changes across $files files"'
Making sure to round off the number of lines changed.