From 0e47547cb3045f0ae186e0866f6f55615bc89cdf Mon Sep 17 00:00:00 2001 From: CAI Open Source Builds Date: Thu, 4 Dec 2025 12:02:34 -0800 Subject: [PATCH] chore: release --- CHANGELOG.md | 7 +++++++ Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- c2pa_c_ffi/CHANGELOG.md | 3 +++ c2pa_c_ffi/Cargo.toml | 2 +- cli/CHANGELOG.md | 3 +++ cli/Cargo.toml | 4 ++-- make_test_images/Cargo.toml | 2 +- 8 files changed, 24 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d4c86fb4..a17c34bb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,13 @@ As of December 2025 and until the 1.0.0 version is released, the CAI team will o ## [Unreleased] +## [0.73.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-v0.72.1...c2pa-v0.73.0) +_04 December 2025_ + +### Added + +* Restricted HTTP resolvers ([#1630](https://github.com/contentauth/c2pa-rs/pull/1630)) + ## [0.72.1](https://github.com/contentauth/c2pa-rs/compare/c2pa-v0.72.0...c2pa-v0.72.1) _04 December 2025_ diff --git a/Cargo.lock b/Cargo.lock index 210440b3b..99342d6f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "c2pa" -version = "0.72.1" +version = "0.73.0" dependencies = [ "anyhow", "asn1-rs", @@ -540,7 +540,7 @@ dependencies = [ [[package]] name = "c2pa-c-ffi" -version = "0.72.1" +version = "0.73.0" dependencies = [ "c2pa", "cbindgen", @@ -554,7 +554,7 @@ dependencies = [ [[package]] name = "c2pa_macros" -version = "0.72.1" +version = "0.73.0" dependencies = [ "quote", "syn 2.0.111", @@ -562,7 +562,7 @@ dependencies = [ [[package]] name = "c2patool" -version = "0.26.6" +version = "0.26.7" dependencies = [ "anyhow", "assert_cmd", @@ -1319,7 +1319,7 @@ dependencies = [ [[package]] name = "export_schema" -version = "0.72.1" +version = "0.73.0" dependencies = [ "anyhow", "c2pa", @@ -2339,7 +2339,7 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" [[package]] name = "make_test_images" -version = "0.72.1" +version = "0.73.0" dependencies = [ "anyhow", "c2pa", diff --git a/Cargo.toml b/Cargo.toml index 4a4dd33e1..a814c525d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ # members in this workspace can share this version setting [workspace.package] -version = "0.72.1" +version = "0.73.0" [workspace.dependencies] c2pa = { path = "sdk", default-features = false } diff --git a/c2pa_c_ffi/CHANGELOG.md b/c2pa_c_ffi/CHANGELOG.md index c6b32745f..cd0f9b722 100644 --- a/c2pa_c_ffi/CHANGELOG.md +++ b/c2pa_c_ffi/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.72.2](https://github.com/contentauth/c2pa-rs/compare/c2pa-c-ffi-v0.72.1...c2pa-c-ffi-v0.72.2) +_04 December 2025_ + ## [0.72.1](https://github.com/contentauth/c2pa-rs/compare/c2pa-c-ffi-v0.72.0...c2pa-c-ffi-v0.72.1) _04 December 2025_ diff --git a/c2pa_c_ffi/Cargo.toml b/c2pa_c_ffi/Cargo.toml index 7e950ea1e..d3c8e3bc9 100644 --- a/c2pa_c_ffi/Cargo.toml +++ b/c2pa_c_ffi/Cargo.toml @@ -23,7 +23,7 @@ rust_native_crypto = ["c2pa/rust_native_crypto"] pdf = ["c2pa/pdf"] [dependencies] -c2pa = { path = "../sdk", version = "0.72.1", default-features = false, features = [ +c2pa = { path = "../sdk", version = "0.73.0", default-features = false, features = [ "add_thumbnails", "fetch_remote_manifests", "file_io", diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 860d1c528..19b30b399 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.7](https://github.com/contentauth/c2pa-rs/compare/c2patool-v0.26.6...c2patool-v0.26.7) +_04 December 2025_ + ## [0.26.6](https://github.com/contentauth/c2pa-rs/compare/c2patool-v0.26.5...c2patool-v0.26.6) _04 December 2025_ diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ebd44e1e2..453637fd1 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "c2patool" default-run = "c2patool" -version = "0.26.6" +version = "0.26.7" description = "Tool for displaying and creating C2PA manifests." authors = [ "Gavin Peacock ", @@ -28,7 +28,7 @@ networking = [ [dependencies] anyhow = "1.0" atree = "0.5.2" -c2pa = { path = "../sdk", version = "0.72.1", features = [ +c2pa = { path = "../sdk", version = "0.73.0", features = [ "fetch_remote_manifests", "file_io", "add_thumbnails", diff --git a/make_test_images/Cargo.toml b/make_test_images/Cargo.toml index 876540db4..925f08ca0 100644 --- a/make_test_images/Cargo.toml +++ b/make_test_images/Cargo.toml @@ -12,7 +12,7 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] } [dependencies] anyhow = "1.0.40" -c2pa = { path = "../sdk", version = "0.72.1", features = [ +c2pa = { path = "../sdk", version = "0.73.0", features = [ "fetch_remote_manifests", "file_io", "add_thumbnails",