From 340bdc1c7a6a8382e3c6ed75e1938be9b0c957e1 Mon Sep 17 00:00:00 2001 From: valued mammal Date: Mon, 26 May 2025 19:16:03 -0400 Subject: [PATCH] chore: bump `bdk_chain` to 0.23.0 core to 0.6.0 bitcoind_rpc to 0.20.0 electrum to 0.23.0 esplora to 0.22.0 file_store 0.21.0 testenv to 0.13.0 --- crates/bitcoind_rpc/Cargo.toml | 4 ++-- crates/chain/Cargo.toml | 4 ++-- crates/core/Cargo.toml | 2 +- crates/electrum/Cargo.toml | 4 ++-- crates/esplora/Cargo.toml | 4 ++-- crates/file_store/Cargo.toml | 4 ++-- crates/testenv/Cargo.toml | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/crates/bitcoind_rpc/Cargo.toml b/crates/bitcoind_rpc/Cargo.toml index 72792098..5cb6c21d 100644 --- a/crates/bitcoind_rpc/Cargo.toml +++ b/crates/bitcoind_rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_bitcoind_rpc" -version = "0.19.0" +version = "0.20.0" edition = "2021" rust-version = "1.63" homepage = "https://bitcoindevkit.org" @@ -18,7 +18,7 @@ workspace = true [dependencies] bitcoin = { version = "0.32.0", default-features = false } bitcoincore-rpc = { version = "0.19.0" } -bdk_core = { path = "../core", version = "0.5.0", default-features = false } +bdk_core = { path = "../core", version = "0.6.0", default-features = false } [dev-dependencies] bdk_bitcoind_rpc = { path = "." } diff --git a/crates/chain/Cargo.toml b/crates/chain/Cargo.toml index ffe964c8..9731b608 100644 --- a/crates/chain/Cargo.toml +++ b/crates/chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_chain" -version = "0.22.0" +version = "0.23.0" edition = "2021" rust-version = "1.63" homepage = "https://bitcoindevkit.org" @@ -17,7 +17,7 @@ workspace = true [dependencies] bitcoin = { version = "0.32.0", default-features = false } -bdk_core = { path = "../core", version = "0.5.0", default-features = false } +bdk_core = { path = "../core", version = "0.6.0", default-features = false } serde = { version = "1", optional = true, features = ["derive", "rc"] } miniscript = { version = "12.3.1", optional = true, default-features = false } diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 1fdda29f..72db5f06 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_core" -version = "0.5.0" +version = "0.6.0" edition = "2021" rust-version = "1.63" homepage = "https://bitcoindevkit.org" diff --git a/crates/electrum/Cargo.toml b/crates/electrum/Cargo.toml index 261671fd..a6b619eb 100644 --- a/crates/electrum/Cargo.toml +++ b/crates/electrum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_electrum" -version = "0.22.0" +version = "0.23.0" edition = "2021" homepage = "https://bitcoindevkit.org" repository = "https://github.com/bitcoindevkit/bdk" @@ -13,7 +13,7 @@ readme = "README.md" workspace = true [dependencies] -bdk_core = { path = "../core", version = "0.5.0" } +bdk_core = { path = "../core", version = "0.6.0" } electrum-client = { version = "0.23.1", features = [ "proxy" ], default-features = false } [dev-dependencies] diff --git a/crates/esplora/Cargo.toml b/crates/esplora/Cargo.toml index 5a8d8f5a..05dea8a0 100644 --- a/crates/esplora/Cargo.toml +++ b/crates/esplora/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_esplora" -version = "0.21.0" +version = "0.22.0" edition = "2021" homepage = "https://bitcoindevkit.org" repository = "https://github.com/bitcoindevkit/bdk" @@ -15,7 +15,7 @@ readme = "README.md" workspace = true [dependencies] -bdk_core = { path = "../core", version = "0.5.0", default-features = false } +bdk_core = { path = "../core", version = "0.6.0", default-features = false } esplora-client = { version = "0.12.0", default-features = false } async-trait = { version = "0.1.66", optional = true } futures = { version = "0.3.26", optional = true } diff --git a/crates/file_store/Cargo.toml b/crates/file_store/Cargo.toml index 061895ee..da20bfbe 100644 --- a/crates/file_store/Cargo.toml +++ b/crates/file_store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_file_store" -version = "0.20.0" +version = "0.21.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/bitcoindevkit/bdk" @@ -14,7 +14,7 @@ readme = "README.md" workspace = true [dependencies] -bdk_core = { path = "../core", version = "0.5.0", features = ["serde"]} +bdk_core = { path = "../core", version = "0.6.0", features = ["serde"]} bincode = { version = "1" } serde = { version = "1", features = ["derive"] } diff --git a/crates/testenv/Cargo.toml b/crates/testenv/Cargo.toml index 0332ca9f..ad544e72 100644 --- a/crates/testenv/Cargo.toml +++ b/crates/testenv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_testenv" -version = "0.12.0" +version = "0.13.0" edition = "2021" rust-version = "1.63" homepage = "https://bitcoindevkit.org" @@ -16,7 +16,7 @@ readme = "README.md" workspace = true [dependencies] -bdk_chain = { path = "../chain", version = "0.22.0", default-features = false } +bdk_chain = { path = "../chain", version = "0.23.0", default-features = false } electrsd = { version = "0.28.0", features = [ "legacy" ], default-features = false } [dev-dependencies] -- 2.49.0