commit 58d29d39bf5f37468be6dc6e2834d5767b6b0c1e
parent cab03d22089f52459bcab2de4609771741bfaa2f
Author: Eric Scouten <scouten@adobe.com>
Date: Tue, 14 Nov 2023 12:24:31 -0800
(IGNORE) Ensure there's a blank line between each list of changes in the changelog (#340)
Diffstat:
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
@@ -58,7 +58,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/contentauth/c2pa-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/contentauth/c2pa-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 }}
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -16,6 +16,7 @@ _01 November 2023_
* (MINOR) Use JUMBF URIs for ManifestStore identifiers ([#323](https://github.com/contentauth/c2pa-rs/pull/323))
* Add ManifestStore::from_stream ([#319](https://github.com/contentauth/c2pa-rs/pull/319))
* Adds embed_to_stream ([#313](https://github.com/contentauth/c2pa-rs/pull/313))
+
## 0.27.1
_04 October 2023_
@@ -23,6 +24,7 @@ _04 October 2023_
* Add ability to customize HTTP headers on timestamp request to Signer and AsyncSigner traits ([#315](https://github.com/contentauth/c2pa-rs/pull/315))
* Add all of the MIME types that are associated with WAV files ([#316](https://github.com/contentauth/c2pa-rs/pull/316))
* Allow MS_C2PA_SIGNING OID to pass ([#314](https://github.com/contentauth/c2pa-rs/pull/314))
+
## 0.27.0
_29 September 2023_
@@ -30,6 +32,7 @@ _29 September 2023_
* Support for MP3 ([#295](https://github.com/contentauth/c2pa-rs/pull/295))
* (MINOR) Signer can call timestamp authority directly ([#311](https://github.com/contentauth/c2pa-rs/pull/311))
* implements pdf read support ([#309](https://github.com/contentauth/c2pa-rs/pull/309))
+
## 0.26.0
_13 September 2023_
@@ -41,6 +44,7 @@ _13 September 2023_
* Update links to C2PA spec to 1.3 ([#292](https://github.com/contentauth/c2pa-rs/pull/292))
* Error saving stream writes ([#290](https://github.com/contentauth/c2pa-rs/pull/290))
* Fix for overly harsh checks when checking Merkle trees. ([#289](https://github.com/contentauth/c2pa-rs/pull/289))
+
## 0.25.2
_02 August 2023_