Skip to content

Commit

Permalink
docs: Correct the order of versions in the CHANGELOG.md (#5941)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Collins <alex_collins@intuit.com>
  • Loading branch information
alexec committed May 18, 2021
1 parent 3659e67 commit 8cb0e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ echo

tag=
# we skip v0.0.0 tags, so these can be used on branches without updating release notes
git tag -l 'v*' | grep -v 0.0.0 | sort -rd | while read last; do
git tag -l 'v*' | grep -v 0.0.0 | sort -rV | while read last; do
if [ "$tag" != "" ]; then
echo "## $tag ($(git log $tag -n1 --format=%as))"
echo
Expand Down

0 comments on commit 8cb0e5c

Please sign in to comment.