From 32d03cf5cf83aaf942083ba6e73879a0bf39de4f Mon Sep 17 00:00:00 2001 From: Igor Artamonov Date: Sat, 13 May 2023 22:28:16 -0400 Subject: [PATCH] problem: incompatible with Bitcoin v0.30 solution: limit to compatible version and release it as 0.6.3 --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6304cc8..fbb1df7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -75,7 +75,7 @@ dependencies = [ [[package]] name = "hdpath" -version = "0.6.1" +version = "0.6.3" dependencies = [ "bitcoin", "byteorder", diff --git a/Cargo.toml b/Cargo.toml index 06a9012..9367d9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hdpath" description = "Hierarchical Deterministic Path (BIP32, BIP43, BIP44, BIP49, BIP84)" -version = "0.6.2" +version = "0.6.3" authors = ["Igor Artamonov "] edition = "2018" readme = "crates.md" @@ -15,7 +15,7 @@ path = "src/lib.rs" [dependencies] byteorder= "1.3.4" -bitcoin = { version = ">= 0.27", optional = true } +bitcoin = { version = ">= 0.27, < 0.30", optional = true } [dev-dependencies] rand = "0.7.3"