Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_

Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
3 changes: 3 additions & 0 deletions c2pa_c_ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_

Expand Down
2 changes: 1 addition & 1 deletion c2pa_c_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 3 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_

Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion make_test_images/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading