From 918cc584aa5720f8dc0c2b81249f4c978a3c5764 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Mon, 23 Mar 2026 14:54:35 +0100 Subject: [PATCH] Release apdu-app v0.2.0 and apdu-dispatch v0.4.0 --- app/CHANGELOG.md | 6 ++++++ app/Cargo.toml | 2 +- dispatch/CHANGELOG.md | 7 +++++++ dispatch/Cargo.toml | 4 ++-- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/app/CHANGELOG.md b/app/CHANGELOG.md index 9d58be5..55b508c 100644 --- a/app/CHANGELOG.md +++ b/app/CHANGELOG.md @@ -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. diff --git a/app/Cargo.toml b/app/Cargo.toml index 48f5571..664da62 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apdu-app" -version = "0.1.0" +version = "0.2.0" description = "trait for APDU applications" authors.workspace = true diff --git a/dispatch/CHANGELOG.md b/dispatch/CHANGELOG.md index b040548..5dfe773 100644 --- a/dispatch/CHANGELOG.md +++ b/dispatch/CHANGELOG.md @@ -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][]) diff --git a/dispatch/Cargo.toml b/dispatch/Cargo.toml index 45c5b4b..dffdba2 100644 --- a/dispatch/Cargo.toml +++ b/dispatch/Cargo.toml @@ -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 @@ -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