commit ad4c015a524092797dc6afeedbe8fc372355f0b3
parent 60739657061ba0a6aac71832ff4d0a91401e6f03
Author: dkozma <dkozma@users.noreply.github.com>
Date: Wed, 3 Apr 2024 23:09:03 +0000
Prepare 0.31.2 release
Diffstat:
5 files changed, 15 insertions(+), 4 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -6,6 +6,17 @@ This project adheres to [Semantic Versioning](https://semver.org), except that
Do not manually edit this file. It will be automatically updated when a new release is published.
+## 0.31.2
+_03 April 2024_
+
+* Fixed temp file auto delete ([#438](https://github.com/contentauth/c2pa-rs/pull/438))
+* Add `Sync` trait to `TrustHandlerConfig` ([#440](https://github.com/contentauth/c2pa-rs/pull/440))
+* remove file_io dependency on fetch_remote_manifests ([#434](https://github.com/contentauth/c2pa-rs/pull/434))
+* Remove verify after signing when compiling without openssl ([#404](https://github.com/contentauth/c2pa-rs/pull/404))
+* Streaming write support for BMFF ([#435](https://github.com/contentauth/c2pa-rs/pull/435))
+* Added support for XMP streaming writes for TIFF/DNG ([#433](https://github.com/contentauth/c2pa-rs/pull/433))
+* Implements embed_reference_to_stream for jpeg ([#430](https://github.com/contentauth/c2pa-rs/pull/430))
+
## 0.31.1
_25 March 2024_
diff --git a/README.md b/README.md
@@ -66,7 +66,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
-c2pa = "0.31.1"
+c2pa = "0.31.2"
```
If you want to read or write a manifest file, add the `file_io` dependency to your `Cargo.toml`.
diff --git a/export_schema/Cargo.toml b/export_schema/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "export_schema"
-version = "0.31.1"
+version = "0.31.2"
authors = ["Dave Kozma <dkozma@adobe.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
diff --git a/make_test_images/Cargo.toml b/make_test_images/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "make_test_images"
-version = "0.31.1"
+version = "0.31.2"
authors = ["Gavin Peacock <gpeacock@adobe.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "c2pa"
-version = "0.31.1"
+version = "0.31.2"
description = "Rust SDK for C2PA (Coalition for Content Provenance and Authenticity) implementors"
authors = [
"Maurice Fisher <mfisher@adobe.com>",