Added tools/changelog-helper.sh.
This commit is contained in:
parent
75706135e3
commit
9df4c7f57b
2 changed files with 24 additions and 2 deletions
|
@ -1,8 +1,7 @@
|
|||
[ ] make README.md and commit if needed
|
||||
[ ] make man/pandoc.1 and commit if needed
|
||||
[ ] Finalize changelog
|
||||
git log --pretty='format:%n%n* %s (%an)%n%b%n%h%n' \
|
||||
--reverse --name-only LASTRELEASE..HEAD > LOG
|
||||
tools/changelog-helper.sh
|
||||
[ ] make packages
|
||||
[ ] make update-website
|
||||
[ ] make trypandoc
|
||||
|
|
23
tools/changelog-helper.sh
Executable file
23
tools/changelog-helper.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/sh
|
||||
# generate preliminary list of changes since changelog
|
||||
# was last modified
|
||||
|
||||
lastmod=`git log -n2 --format=oneline changelog | awk '{print $1;}'`
|
||||
#git log --format=oneline $starthash..HEAD
|
||||
files=`git ls-tree -r master --name-only`
|
||||
for x in $files
|
||||
do
|
||||
commits=`git log -n1 $lastmod..HEAD $x`
|
||||
if [[ ! -z $commits ]]
|
||||
then
|
||||
if echo $x | grep -q "src\/.*\.hs"
|
||||
then
|
||||
file=`echo $x | sed -e 's/src\///' | sed -e 's/\//\./g' | sed -e 's/\.hs$//'`
|
||||
else
|
||||
file=$x
|
||||
fi
|
||||
echo " * $file"
|
||||
GIT_PAGER=cat git log --pretty=format:'%n%w(78,4,6)+ %s (%an)%n%n%w(78,6,6)%b%n' $lastmod..HEAD $x
|
||||
fi
|
||||
done
|
||||
|
Loading…
Reference in a new issue