Skip to content

Commit

Permalink
changelog.sh -- now list most recent first
Browse files Browse the repository at this point in the history
  • Loading branch information
trmrsh committed May 13, 2021
1 parent 1253175 commit 27ddafe
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 70 deletions.
8 changes: 4 additions & 4 deletions changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ cat<<EOF > $clog
|hiper| pipeline change log from ${tag1} to ${tag2}
***************************************************
List of changes from git, oldest first, with the commit keys linked to github:
List of changes from git, newest first, with the commit keys linked to github:
EOF

git log ${tag1}..${tag2} --pretty=format:' * `%H <https://github.com/HiPERCAM/hipercam/commit/%H>`_ %s' --reverse >> $clog
git log ${tag1}..${tag2} --pretty=format:' * `%H <https://github.com/HiPERCAM/hipercam/commit/%H>`_ %s' >> $clog

clog=docs/change_log_${tag2}_to_now.rst

Expand All @@ -33,9 +33,9 @@ cat<<EOF > $clog
|hiper| pipeline change log from ${tag2}
****************************************
List of changes from git, oldest first, with the commit keys linked to github:
List of changes from git, newest first, with the commit keys linked to github:
EOF

git log ${tag2}..HEAD --pretty=format:' * `%H <https://github.com/HiPERCAM/hipercam/commit/%H>`_ %s' --reverse >> $clog
git log ${tag2}..HEAD --pretty=format:' * `%H <https://github.com/HiPERCAM/hipercam/commit/%H>`_ %s' >> $clog

Loading

0 comments on commit 27ddafe

Please sign in to comment.