diff --git a/app/CHANGELOG.md b/app/CHANGELOG.md index 94ff94b..9d58be5 100644 --- a/app/CHANGELOG.md +++ b/app/CHANGELOG.md @@ -6,5 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- + +## [v0.1.0](https://github.com/trussed-dev/apdu-dispatch/releases/tag/app-0.1.0) (2024-10-18) + - Extract `app` module from `apdu-dispatch` 0.2.0 into a separate crate. - Replace `iso7816::Command` with `iso7816::command::CommandView` in the `App` trait and remove the `C` parameter. diff --git a/dispatch/CHANGELOG.md b/dispatch/CHANGELOG.md index 2dc00ac..43a5cb0 100644 --- a/dispatch/CHANGELOG.md +++ b/dispatch/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- + +## [0.3.0] + - Move the `app` module into a separate crate, `apdu-app`, and re-export it. - Replace `iso7816::Command` with `iso7816::command::CommandView` in the `App` trait and remove the `C` parameter. diff --git a/dispatch/Cargo.toml b/dispatch/Cargo.toml index b6802b3..6669ddd 100644 --- a/dispatch/Cargo.toml +++ b/dispatch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apdu-dispatch" -version = "0.2.0" +version = "0.3.0" description = "Dispatch layer after nfc-device and usbd-ccid" authors.workspace = true