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
6 changes: 6 additions & 0 deletions app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

-

## [v0.2.0](https://github.com/trussed-dev/apdu-dispatch/releases/tag/app-0.2.0) (2026-03-23)

- Update dependencies:
- `iso7816` v0.2
- `hapless` v0.9

## [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.
Expand Down
2 changes: 1 addition & 1 deletion app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apdu-app"
version = "0.1.0"
version = "0.2.0"
description = "trait for APDU applications"

authors.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions dispatch/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

-

## [0.4.0]

- Update dependencies:
- `apdu-app` v0.2
- `iso7816` v0.2
- `hapless` v0.9

## [0.3.1]

- Do not deselect applications if the application was not found ([#28][])
Expand Down
4 changes: 2 additions & 2 deletions dispatch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apdu-dispatch"
version = "0.3.1"
version = "0.4.0"
description = "Dispatch layer after nfc-device and usbd-ccid"

authors.workspace = true
Expand All @@ -9,7 +9,7 @@ license.workspace = true
repository.workspace = true

[dependencies]
apdu-app = "0.1.0"
apdu-app = "0.2.0"
delog = "0.1.4"
interchange = "0.3.0"
iso7816.workspace = true
Expand Down
Loading