diff --git a/CHANGELOG.md b/CHANGELOG.md index 303b4cf16..f61e933e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ 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.35.0 +_12 September 2024_ + +* upgrades to riff@2.0.0, preventing panic on invalid riff files ([#579](https://github.com/contentauth/c2pa-rs/pull/579)) +* EC signature DER support ([#581](https://github.com/contentauth/c2pa-rs/pull/581)) +* Update base64 requirement from 0.21.2 to 0.22.1 in /sdk ([#519](https://github.com/contentauth/c2pa-rs/pull/519)) +* (MINOR) Rust API enhancements and fixes. ([#575](https://github.com/contentauth/c2pa-rs/pull/575)) +* Fix GIF off by one with XMP ([#562](https://github.com/contentauth/c2pa-rs/pull/562)) + ## 0.34.0 _30 August 2024_ diff --git a/README.md b/README.md index a649923a6..95c8f5e07 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -c2pa = "0.34.0" +c2pa = "0.35.0" ``` 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 index 9d3d737ee..389f42429 100644 --- a/export_schema/Cargo.toml +++ b/export_schema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "export_schema" -version = "0.34.0" +version = "0.35.0" authors = ["Dave Kozma "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/make_test_images/Cargo.toml b/make_test_images/Cargo.toml index c06890247..ef05bbd68 100644 --- a/make_test_images/Cargo.toml +++ b/make_test_images/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "make_test_images" -version = "0.34.0" +version = "0.35.0" authors = ["Gavin Peacock "] license = "MIT OR Apache-2.0" edition = "2021" diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index cafd8154e..40f1bf143 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "c2pa" -version = "0.34.0" +version = "0.35.0" description = "Rust SDK for C2PA (Coalition for Content Provenance and Authenticity) implementors" authors = [ "Maurice Fisher ",