Skip to content
Merged
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
4 changes: 4 additions & 0 deletions app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 4 additions & 0 deletions dispatch/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion dispatch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading