diff --git a/Cargo.toml b/Cargo.toml index aabf24f..8f29ba1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/solokeys/ctaphid-dispatch" [workspace.dependencies] heapless-bytes = "0.3" -trussed-core = "0.1.0-rc.1" +trussed-core = "0.1.0" [patch.crates-io] ctaphid-app.path = "app" diff --git a/app/CHANGELOG.md b/app/CHANGELOG.md index 541c212..1f9129a 100644 --- a/app/CHANGELOG.md +++ b/app/CHANGELOG.md @@ -1,5 +1,5 @@ # Changelog -## [v0.1.0-rc.1](https://github.com/trussed-dev/ctaphid-dispatch/releases/tag/app-v0.1.0-rc.1) (2025-01-08) +## [v0.1.0](https://github.com/trussed-dev/ctaphid-dispatch/releases/tag/app-v0.1.0) (2025-01-08) -- Extract `app` and `command` modules from `ctaphid-dispatch` 0.1 into a separate crate. +Initial release that extracts the `app` and `command` modules from `ctaphid-dispatch` 0.1 into a separate crate. diff --git a/app/Cargo.toml b/app/Cargo.toml index 66e77cb..1a2a651 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ctaphid-app" -version = "0.1.0-rc.1" +version = "0.1.0" description = "trait for CTAPHID applications" authors.workspace = true diff --git a/dispatch/Cargo.toml b/dispatch/Cargo.toml index acfb1ab..113c7d7 100644 --- a/dispatch/Cargo.toml +++ b/dispatch/Cargo.toml @@ -9,7 +9,7 @@ license.workspace = true repository.workspace = true [dependencies] -ctaphid-app = "0.1.0-rc.1" +ctaphid-app = "0.1" delog = "0.1" heapless-bytes.workspace = true interchange = "0.3.0"