Skip to content

Commit

Permalink
problem: incompatible with Bitcoin v0.30
Browse files Browse the repository at this point in the history
solution: limit to compatible version and release it as 0.6.3
  • Loading branch information
splix committed May 14, 2023
1 parent a002184 commit 32d03cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <igor@artamonov.ru>"]
edition = "2018"
readme = "crates.md"
Expand All @@ -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"
Expand Down

0 comments on commit 32d03cf

Please sign in to comment.