Skip to content

Commit

Permalink
(IGNORE) Ensure that there's a blank line between changelog lists for…
Browse files Browse the repository at this point in the history
… each version (#186)
  • Loading branch information
scouten-adobe committed Nov 14, 2023
1 parent 2e4a029 commit 80462d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Update changelog
run: |
(head -8 CHANGELOG.md && echo "## $VERSION" && date "+_%d %B %Y_" && echo "" && (echo "$CHANGELOG" | sed -E 's_\(#([0-9]+)\)_([#\1](https://github.com/adobe/xmp-toolkit-rs/pull/\1)\)_') && tail -n +9 CHANGELOG.md) > CHANGELOG.new.md
(head -8 CHANGELOG.md && echo "## $VERSION" && date "+_%d %B %Y_" && echo "" && (echo "$CHANGELOG" | sed -E 's_\(#([0-9]+)\)_([#\1](https://github.com/adobe/xmp-toolkit-rs/pull/\1)\)_') && echo "" && tail -n +9 CHANGELOG.md) > CHANGELOG.new.md
mv CHANGELOG.new.md CHANGELOG.md
env:
VERSION: ${{ steps.set-version.outputs.version }}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Do not manually edit this file. It will be automatically updated when a new rele
_14 November 2023_

* (MINOR) Bump MSRV to 1.67 ([#182](https://github.com/adobe/xmp-toolkit-rs/pull/182))

## 1.5.0
_16 October 2023_

Expand Down

0 comments on commit 80462d7

Please sign in to comment.