Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
scouten-adobe authored Jan 23, 2025
1 parent 00263a1 commit b09548d
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 15 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

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

## [0.43.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-v0.42.0...c2pa-v0.43.0)
_23 January 2025_

### Added

* *(crypto)* Make `box_size` parameter on `c2pa_crypto::cose::sign` an `Option` (#879)

### Fixed

* Remove `Debug` supertrait from `DynamicAssertion` and `CredentialHolder` traits (#876)

## [0.42.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-v0.41.1...c2pa-v0.42.0)
_22 January 2025_

Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions cawg_identity/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

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

## [0.4.0](https://github.com/contentauth/c2pa-rs/compare/cawg-identity-v0.3.0...cawg-identity-v0.4.0)
_23 January 2025_

### Fixed

* Remove `Debug` supertrait from `DynamicAssertion` and `CredentialHolder` traits (#876)

## [0.3.0](https://github.com/contentauth/c2pa-rs/compare/cawg-identity-v0.2.2...cawg-identity-v0.3.0)
_22 January 2025_

Expand Down
6 changes: 3 additions & 3 deletions cawg_identity/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cawg-identity"
version = "0.3.0"
version = "0.4.0"
description = "Rust SDK for CAWG (Creator Assertions Working Group) identity assertion"
authors = [
"Eric Scouten <scouten@adobe.com>",
Expand All @@ -27,8 +27,8 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
async-trait = "0.1.78"
base64 = "0.22.1"
c2pa = { path = "../sdk", version = "0.42.0", features = ["openssl", "unstable_api"] }
c2pa-crypto = { path = "../internal/crypto", version = "0.4.0" }
c2pa = { path = "../sdk", version = "0.43.0", features = ["openssl", "unstable_api"] }
c2pa-crypto = { path = "../internal/crypto", version = "0.5.0" }
chrono = { version = "0.4.38", features = ["serde"] }
ciborium = "0.2.2"
coset = "0.3.8"
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] }
[dependencies]
anyhow = "1.0"
atree = "0.5.2"
c2pa = { path = "../sdk", version = "0.42.0", features = [
c2pa = { path = "../sdk", version = "0.43.0", features = [
"fetch_remote_manifests",
"file_io",
"add_thumbnails",
"pdf",
"unstable_api",
] }
c2pa-crypto = { path = "../internal/crypto", version = "0.4.0" }
c2pa-crypto = { path = "../internal/crypto", version = "0.5.0" }
clap = { version = "4.5.10", features = ["derive", "env"] }
env_logger = "0.11.4"
glob = "0.3.1"
Expand Down
7 changes: 7 additions & 0 deletions internal/crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

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

## [0.5.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-crypto-v0.4.0...c2pa-crypto-v0.5.0)
_23 January 2025_

### Added

* *(crypto)* Make `box_size` parameter on `c2pa_crypto::cose::sign` an `Option` (#879)

## [0.4.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-crypto-v0.3.1...c2pa-crypto-v0.4.0)
_22 January 2025_

Expand Down
2 changes: 1 addition & 1 deletion internal/crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "c2pa-crypto"
version = "0.4.0"
version = "0.5.0"
description = "Cryptography internals for c2pa-rs crate"
authors = [
"Maurice Fisher <mfisher@adobe.com>",
Expand Down
4 changes: 2 additions & 2 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "c2pa"
version = "0.42.0"
version = "0.43.0"
description = "Rust SDK for C2PA (Coalition for Content Provenance and Authenticity) implementors"
authors = [
"Maurice Fisher <mfisher@adobe.com>",
Expand Down Expand Up @@ -76,7 +76,7 @@ bcder = "0.7.3"
bytes = "1.7.2"
byteorder = { version = "1.4.3", default-features = false }
byteordered = "0.6.0"
c2pa-crypto = { path = "../internal/crypto", version = "0.4.0" }
c2pa-crypto = { path = "../internal/crypto", version = "0.5.0" }
c2pa-status-tracker = { path = "../internal/status-tracker", version = "0.3.0" }
chrono = { version = "0.4.39", default-features = false, features = [
"serde",
Expand Down

0 comments on commit b09548d

Please sign in to comment.