From d819e0121f8231f4f9b3f915c32c083bc5f0ad1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Thu, 25 Apr 2024 11:00:13 +0200 Subject: [PATCH] Prepare release 0.13.0 --- CHANGELOG.md | 24 +++++++++++++++++++++++- Cargo.toml | 2 +- fuzz/Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d06ce6a2..485120c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,33 @@ ## [Unreleased](https://github.com/nitrokey/trussed-secrets-app/tree/HEAD) -[Full Changelog](https://github.com/nitrokey/trussed-secrets-app/compare/v0.12.0...HEAD) +[Full Changelog](https://github.com/nitrokey/trussed-secrets-app/compare/v0.13.0...HEAD) + +## [0.13.0](https://github.com/nitrokey/trussed-secrets-app/tree/v0.13.0) (2024-05-02) + +[Full Changelog](https://github.com/nitrokey/trussed-secrets-app/compare/v0.12.0...v0.13.0) + +**Added features** + +- Add support for credential update [\#97](https://github.com/Nitrokey/trussed-secrets-app/issues/97) and [\#99](https://github.com/Nitrokey/trussed-secrets-app/issues/99) +- Prevent overwriting of credentials with `Register` [\#96](https://github.com/Nitrokey/trussed-secrets-app/issues/96) **Fixed bugs:** - Confirm Credential removal with a touch [\#92](https://github.com/Nitrokey/trussed-secrets-app/issues/92) +- Require PIN confirmation for registering `ReverseHotp` credentials [\#114](https://github.com/Nitrokey/trussed-secrets-app/issues/114) + +**Removed** + +- Remove challenge-response implementation [\#83](https://github.com/Nitrokey/trussed-secrets-app/pull/83) + +**Changed** + +- Update documentation [\#100](https://github.com/Nitrokey/trussed-secrets-app/issues/100) +- Improved logging and usbip simulation [\#102](https://github.com/Nitrokey/trussed-secrets-app/issues/102) +- Fix compilation of fuzz targets [\#104](https://github.com/Nitrokey/trussed-secrets-app/issues/104) +- Remove unused `interchange` dependency [\#105](https://github.com/Nitrokey/trussed-secrets-app/issues/105) +- Use trussed-auth 0.3.0 [\#109](https://github.com/Nitrokey/trussed-secrets-app/issues/109) ## [v0.12.0](https://github.com/nitrokey/trussed-secrets-app/tree/v0.12.0) (2023-06-28) diff --git a/Cargo.toml b/Cargo.toml index e3aad4f4..51b9af59 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ trussed = { git = "https://github.com/Nitrokey/trussed", tag = "v0.1.0-nitrokey. # unreleased upstream changes usbd-ctaphid = { git = "https://github.com/Nitrokey/usbd-ctaphid", tag = "v0.1.0-nitrokey.1" } ctaphid-dispatch = { git = "https://github.com/Nitrokey/ctaphid-dispatch", tag = "v0.1.1-nitrokey.2" } -serde-indexed = { git = "https://github.com/sosthene-nitrokey/serde-indexed.git", rev = "5005d23cb4ee8622e62188ea0f9466146f851f0d" } +serde-indexed = { git = "https://github.com/nitrokey/serde-indexed.git", tag = "v0.1.0-nitrokey.2" } # unreleased crates trussed-auth = { git = "https://github.com/trussed-dev/trussed-auth", tag = "v0.3.0" } diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index dc93e7da..aa0e0ff6 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -64,7 +64,7 @@ trussed = { git = "https://github.com/Nitrokey/trussed", tag = "v0.1.0-nitrokey. # unreleased upstream changes ctaphid-dispatch = { git = "https://github.com/Nitrokey/ctaphid-dispatch", tag = "v0.1.1-nitrokey.2" } -serde-indexed = { git = "https://github.com/sosthene-nitrokey/serde-indexed.git", rev = "5005d23cb4ee8622e62188ea0f9466146f851f0d" } +serde-indexed = { git = "https://github.com/nitrokey/serde-indexed.git", tag = "v0.1.0-nitrokey.2" } # unreleased crates trussed-auth = { git = "https://github.com/trussed-dev/trussed-auth", tag = "v0.3.0" }