commit 6f772d3356b86d3c712bc82e20ddc0de9127007e
parent d105676e835d6fe396bd8617157f2794ca260ce8
Author: gpeacock <gpeacock@users.noreply.github.com>
Date: Fri, 26 Aug 2022 19:32:41 +0000
Prepare 0.13.0 release
Diffstat:
4 files changed, 14 insertions(+), 3 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.13.0
+_26 August 2022_
+
+* Add RemoteManifestUrl Error, returning url ([#120](https://github.com/contentauth/c2pa-rs/pull/120))
+* Convert status_log error val to a string so that we can return full errors ([#121](https://github.com/contentauth/c2pa-rs/pull/121))
+* Report failures from remote manifest fetch ([#116](https://github.com/contentauth/c2pa-rs/pull/116))
+* Fast XMP extraction from PNG ([#117](https://github.com/contentauth/c2pa-rs/pull/117))
+* Bump MSRV to 1.59.0 ([#118](https://github.com/contentauth/c2pa-rs/pull/118))
+* Make sure there is a single manifest store in the asset ([#114](https://github.com/contentauth/c2pa-rs/pull/114))
+* (MINOR) Switch to "lib" for crate-type ([#113](https://github.com/contentauth/c2pa-rs/pull/113))
+
## 0.12.0
_16 August 2022_
diff --git a/README.md b/README.md
@@ -46,7 +46,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
-c2pa = "0.12.0"
+c2pa = "0.13.0"
```
If you want to read or write a manifest file, add the `file_io` dependency to your `Cargo.toml`. For example:
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.12.0"
+version = "0.13.0"
authors = ["Gavin Peacock <gpeacock@adobe.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "c2pa"
-version = "0.12.0"
+version = "0.13.0"
description = "Rust SDK for C2PA (Coalition for Content Provenance and Authenticity) implementors"
authors = ["Maurice Fisher <mfisher@adobe.com>", "Gavin Peacock <gpeacock@adobe.com>", "Eric Scouten <scouten@adobe.com>", "Leonard Rosenthol <lrosenth@adobe.com>", "Dave Kozma <dkozma@adobe.com>"]
license = "MIT OR Apache-2.0"