Skip to content

Commit 3a26c53

Browse files
authored
chore: release (#1386)
1 parent 3960ade commit 3a26c53

File tree

8 files changed

+73
-49
lines changed

8 files changed

+73
-49
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.62.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-v0.61.0...c2pa-v0.62.0)
11+
_06 September 2025_
12+
13+
### Added
14+
15+
* Implement CAWG X.509 signing via settings ([#1388](https://github.com/contentauth/c2pa-rs/pull/1388))
16+
17+
### Fixed
18+
19+
* Assertion metadata localizations support was missing. CAI-9444 ([#1390](https://github.com/contentauth/c2pa-rs/pull/1390))
20+
* Make `openssl` and `rust_native_crypto` features additive ([#1379](https://github.com/contentauth/c2pa-rs/pull/1379))
21+
* Make OpenSSL code path enforce COSE specified salt length ([#1376](https://github.com/contentauth/c2pa-rs/pull/1376))
22+
1023
## [0.61.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-v0.60.1...c2pa-v0.61.0)
1124
_03 September 2025_
1225

Cargo.lock

Lines changed: 45 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212

1313
# members in this workspace can share this version setting
1414
[workspace.package]
15-
version = "0.61.0"
15+
version = "0.62.0"
1616

1717
[workspace.dependencies]
1818
c2pa = { path = "sdk", default-features = false }

c2pa_c_ffi/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.61.1](https://github.com/contentauth/c2pa-rs/compare/c2pa-c-ffi-v0.61.0...c2pa-c-ffi-v0.61.1)
11+
_06 September 2025_
12+
1013
## [0.60.2](https://github.com/contentauth/c2pa-rs/compare/c2pa-c-ffi-v0.60.1...c2pa-c-ffi-v0.60.2)
1114
_03 September 2025_
1215

c2pa_c_ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ rust_native_crypto = ["c2pa/rust_native_crypto"]
2323
pdf = ["c2pa/pdf"]
2424

2525
[dependencies]
26-
c2pa = { path = "../sdk", version = "0.61.0", default-features = false, features = [
26+
c2pa = { path = "../sdk", version = "0.62.0", default-features = false, features = [
2727
"add_thumbnails",
2828
"fetch_remote_manifests",
2929
"file_io",

cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.21.0](https://github.com/contentauth/c2pa-rs/compare/c2patool-v0.20.4...c2patool-v0.21.0)
11+
_06 September 2025_
12+
13+
### Added
14+
15+
* Implement CAWG X.509 signing via settings ([#1388](https://github.com/contentauth/c2pa-rs/pull/1388))
16+
1017
## [0.20.4](https://github.com/contentauth/c2pa-rs/compare/c2patool-v0.20.3...c2patool-v0.20.4)
1118
_03 September 2025_
1219

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "c2patool"
33
default-run = "c2patool"
4-
version = "0.20.4"
4+
version = "0.21.0"
55
description = "Tool for displaying and creating C2PA manifests."
66
authors = [
77
"Gavin Peacock <[email protected]>",
@@ -22,7 +22,7 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] }
2222
[dependencies]
2323
anyhow = "1.0"
2424
atree = "0.5.2"
25-
c2pa = { path = "../sdk", version = "0.61.0", features = [
25+
c2pa = { path = "../sdk", version = "0.62.0", features = [
2626
"fetch_remote_manifests",
2727
"file_io",
2828
"add_thumbnails",

make_test_images/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] }
1212

1313
[dependencies]
1414
anyhow = "1.0.40"
15-
c2pa = { path = "../sdk", version = "0.61.0", features = [
15+
c2pa = { path = "../sdk", version = "0.62.0", features = [
1616
"fetch_remote_manifests",
1717
"file_io",
1818
"add_thumbnails",

0 commit comments

Comments
 (0)