Skip to content

Commit 49667a0

Browse files
chore: release (#927)
1 parent b4317f7 commit 49667a0

File tree

6 files changed

+47
-24
lines changed

6 files changed

+47
-24
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
66

77
Since version 0.36.2, the format of this changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88

9+
## [0.46.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-v0.45.3...c2pa-v0.46.0)
10+
_15 February 2025_
11+
12+
### Added
13+
14+
* Add support for DynamicAssertions in JSON format (#924)
15+
16+
### Fixed
17+
18+
* Panic in decoding of GIF chunks (#873)
19+
* Use correct byte label for GIF Plain Text Extension (#864)
20+
* Panic in slicing of empty XMP data (#872)
21+
22+
### Other
23+
24+
* Use `AsRef<Path>` in `jumbf_io` functions (#910)
25+
926
## [0.45.3](https://github.com/contentauth/c2pa-rs/compare/c2pa-v0.45.2...c2pa-v0.45.3)
1027
_11 February 2025_
1128

Cargo.lock

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

cawg_identity/CHANGELOG.md

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

77
The format of this changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88

9+
## [0.9.0](https://github.com/contentauth/c2pa-rs/compare/cawg-identity-v0.8.0...cawg-identity-v0.9.0)
10+
_15 February 2025_
11+
12+
### Added
13+
14+
* Add support for DynamicAssertions in JSON format (#924)
15+
916
## [0.8.0](https://github.com/contentauth/c2pa-rs/compare/cawg-identity-v0.7.0...cawg-identity-v0.8.0)
1017
_12 February 2025_
1118

cawg_identity/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cawg-identity"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
description = "Rust SDK for CAWG (Creator Assertions Working Group) identity assertion"
55
authors = [
66
"Eric Scouten <[email protected]>",
@@ -30,7 +30,7 @@ v1_api = ["c2pa/v1_api"]
3030
[dependencies]
3131
async-trait = "0.1.78"
3232
base64 = "0.22.1"
33-
c2pa = { path = "../sdk", version = "0.45.3", features = ["openssl"] }
33+
c2pa = { path = "../sdk", version = "0.46.0", features = ["openssl"] }
3434
c2pa-crypto = { path = "../internal/crypto", version = "0.6.2" }
3535
c2pa-status-tracker = { path = "../internal/status-tracker", version = "0.5.0" }
3636
chrono = { version = "0.4.38", features = ["serde"] }

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.45.3", features = [
25+
c2pa = { path = "../sdk", version = "0.46.0", features = [
2626
"fetch_remote_manifests",
2727
"file_io",
2828
"add_thumbnails",

sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2pa"
3-
version = "0.45.3"
3+
version = "0.46.0"
44
description = "Rust SDK for C2PA (Coalition for Content Provenance and Authenticity) implementors"
55
authors = [
66
"Maurice Fisher <[email protected]>",

0 commit comments

Comments
 (0)