commit 3a905d49f671176bbde89717b172ca29c2f00575 parent c51e4e7e23a757b5416cf7d55ae02386c1f77ee1 Author: Eric Scouten <scouten@adobe.com> Date: Wed, 25 May 2022 20:37:14 -0700 Fix missing links in changelog Update build action to generate new changelog correctly. Diffstat:
| M | .github/workflows/publish.yml | | | 2 | +- |
| M | CHANGELOG.md | | | 21 | ++++++++++----------- |
2 files changed, 11 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml @@ -56,7 +56,7 @@ jobs: - name: Update changelog run: | - (head -8 CHANGELOG.md && echo "## $VERSION" && date "+_%e %B %Y_" && echo "" && echo "$CHANGELOG" && tail -n +9 CHANGELOG.md) > CHANGELOG.new.md + (head -8 CHANGELOG.md && echo "## $VERSION" && date "+_%e %B %Y_" && echo "" && (echo "$CHANGELOG" | sed -E 's_\(#([0-9])+\)_[#\1](https://github.com/contentauth/c2pa-rs/pull/\1)_') && tail -n +9 CHANGELOG.md) > CHANGELOG.new.md mv CHANGELOG.new.md CHANGELOG.md env: VERSION: ${{ steps.set-version.outputs.version }} diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -9,18 +9,17 @@ Do not manually edit this file. It will be automatically updated when a new rele ## 0.1.1 _26 May 2022_ -* Use a special admin token to allow automated pushes to main branch -* Add Makefile for local testing (#18) -* Add workflow for automatically releasing c2pa crate (#16) -* Reduce fixtures size (#15) -* Add codecov.io integration (#4) -* Configure dependabot (#8) -* Configure dependabot (#7) -* Remove unnecessary steps from cargo-deny job (#6) -* Update to latest GH Actions checkout action (#5) -* Change ring license hash to decimal (#3) +* Add Makefile for local testing [#8](https://github.com/contentauth/c2pa-rs/pull/8) +* Add workflow for automatically releasing c2pa crate [#6](https://github.com/contentauth/c2pa-rs/pull/6) +* Reduce fixtures size [#5](https://github.com/contentauth/c2pa-rs/pull/5) +* Add codecov.io integration [#4](https://github.com/contentauth/c2pa-rs/pull/4) +* Configure dependabot [#8](https://github.com/contentauth/c2pa-rs/pull/8) +* Configure dependabot [#7](https://github.com/contentauth/c2pa-rs/pull/7) +* Remove unnecessary steps from cargo-deny job [#6](https://github.com/contentauth/c2pa-rs/pull/6) +* Update to latest GH Actions checkout action [#5](https://github.com/contentauth/c2pa-rs/pull/5) +* Change ring license hash to decimal [#3](https://github.com/contentauth/c2pa-rs/pull/3) -## v0.1.0 +## 0.1.0 _23 May 2022_ * Initial public release