From 563872fe225f59b8b928594e232be3d447b9a2a9 Mon Sep 17 00:00:00 2001 From: Denis Varlakov Date: Fri, 6 Dec 2024 13:32:06 +0100 Subject: [PATCH] Bump version & update changelog Signed-off-by: Denis Varlakov --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f96d3f..60a72d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # hd-wallet crate changelog +## v0.6.1 +* Add aliases for stark derivation in `hd_wallet::stark` module [#17] + +[#17]: https://github.com/LFDT-Lockness/hd-wallet/pull/17 + ## v0.6.0 * BREAKING: Remove slip10-like derivation that can be instantiated with any curve: it is very inefficient when instantiated with certain curves, and may also enable attacker to perform DoS attack by diff --git a/Cargo.lock b/Cargo.lock index 8a779ad..10fa4a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "hd-wallet" -version = "0.6.0" +version = "0.6.1" dependencies = [ "generic-array", "generic-ec", diff --git a/Cargo.toml b/Cargo.toml index 47acb77..6378aa6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hd-wallet" -version = "0.6.0" +version = "0.6.1" edition = "2021" license = "MIT OR Apache-2.0" description = "HD wallets derivation"