Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #673

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ 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.40.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-v0.39.0...c2pa-v0.40.0)
_22 November 2024_

### Added

* Introduce `DynamicAssertion` trait ([#566](https://github.com/contentauth/c2pa-rs/pull/566))

### Fixed

* Add support for MP3 without ID3 header ([#652](https://github.com/contentauth/c2pa-rs/pull/652))
* Treat Unicode-3.0 license as approved; unpin related dependencies ([#693](https://github.com/contentauth/c2pa-rs/pull/693))
* Remote manifest fetch test was not using full path ([#675](https://github.com/contentauth/c2pa-rs/pull/675))
* Fix [#624](https://github.com/contentauth/c2pa-rs/pull/624) (edge cases when combining the box hashes) ([#625](https://github.com/contentauth/c2pa-rs/pull/625))
* For Issue 672, Callback is unsound ([#674](https://github.com/contentauth/c2pa-rs/pull/674))
* For Issue 672, Callback is unsound
* Support "remote_manifest_fetch" verify setting ([#667](https://github.com/contentauth/c2pa-rs/pull/667))

## [0.39.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-v0.38.0...c2pa-v0.39.0)
_13 November 2024_

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.2.0](https://github.com/contentauth/c2pa-rs/compare/c2pa-crypto-v0.1.2...c2pa-crypto-v0.2.0)
_22 November 2024_

### Fixed

* Treat Unicode-3.0 license as approved; unpin related dependencies ([#693](https://github.com/contentauth/c2pa-rs/pull/693))

## [0.1.2](https://github.com/contentauth/c2pa-rs/compare/c2pa-crypto-v0.1.1...c2pa-crypto-v0.1.2)
_24 October 2024_

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.1.2"
version = "0.2.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.39.0"
version = "0.40.0"
description = "Rust SDK for C2PA (Coalition for Content Provenance and Authenticity) implementors"
authors = [
"Maurice Fisher <mfisher@adobe.com>",
Expand Down Expand Up @@ -73,7 +73,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.1.2" }
c2pa-crypto = { path = "../internal/crypto", version = "0.2.0" }
c2pa-status-tracker = { path = "../internal/status-tracker", version = "0.1.0" }
chrono = { version = "0.4.38", default-features = false, features = [
"serde",
Expand Down
Loading