From: valued mammal Date: Sat, 26 Apr 2025 16:23:37 +0000 (-0400) Subject: chore: bump bdk_chain to 0.22.0 X-Git-Tag: core-0.5.0^2~1 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/scripts/enum.FromScriptError.html?a=commitdiff_plain;h=ba4e7fdfc6fa70f8690041f4223d7ac2ec8dcf69;p=bdk chore: bump bdk_chain to 0.22.0 - bdk_core 0.5.0 - bitcoind_rpc 0.19.0 - electrum 0.22.0 - esplora 0.21.0 - file_store 0.20.0 - testenv 0.12.0 --- diff --git a/ci/pin-msrv.sh b/ci/pin-msrv.sh index 2e1a09e5..5f8613d2 100755 --- a/ci/pin-msrv.sh +++ b/ci/pin-msrv.sh @@ -16,8 +16,7 @@ cargo update -p home --precise "0.5.5" cargo update -p proptest --precise "1.2.0" cargo update -p url --precise "2.5.0" cargo update -p tokio --precise "1.38.1" -cargo update -p tokio-util --precise "0.7.11" -cargo update -p indexmap --precise "2.5.0" +cargo update -p reqwest --precise "0.12.4" cargo update -p security-framework-sys --precise "2.11.1" cargo update -p csv --precise "1.3.0" cargo update -p unicode-width --precise "0.1.13" diff --git a/crates/bitcoind_rpc/Cargo.toml b/crates/bitcoind_rpc/Cargo.toml index 7e5eda93..72792098 100644 --- a/crates/bitcoind_rpc/Cargo.toml +++ b/crates/bitcoind_rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_bitcoind_rpc" -version = "0.18.0" +version = "0.19.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.4.1", default-features = false } +bdk_core = { path = "../core", version = "0.5.0", default-features = false } [dev-dependencies] bdk_bitcoind_rpc = { path = "." } diff --git a/crates/chain/Cargo.toml b/crates/chain/Cargo.toml index 8ff44438..ffe964c8 100644 --- a/crates/chain/Cargo.toml +++ b/crates/chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_chain" -version = "0.21.1" +version = "0.22.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.4.1", default-features = false } +bdk_core = { path = "../core", version = "0.5.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 fae5e512..1fdda29f 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_core" -version = "0.4.1" +version = "0.5.0" edition = "2021" rust-version = "1.63" homepage = "https://bitcoindevkit.org" diff --git a/crates/electrum/Cargo.toml b/crates/electrum/Cargo.toml index e3918c18..261671fd 100644 --- a/crates/electrum/Cargo.toml +++ b/crates/electrum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_electrum" -version = "0.21.0" +version = "0.22.0" edition = "2021" homepage = "https://bitcoindevkit.org" repository = "https://github.com/bitcoindevkit/bdk" @@ -13,8 +13,8 @@ readme = "README.md" workspace = true [dependencies] -bdk_core = { path = "../core", version = "0.4.1" } -electrum-client = { version = "0.23", features = [ "proxy" ], default-features = false } +bdk_core = { path = "../core", version = "0.5.0" } +electrum-client = { version = "0.23.1", features = [ "proxy" ], default-features = false } [dev-dependencies] bdk_testenv = { path = "../testenv" } diff --git a/crates/esplora/Cargo.toml b/crates/esplora/Cargo.toml index 85054f2e..5a8d8f5a 100644 --- a/crates/esplora/Cargo.toml +++ b/crates/esplora/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_esplora" -version = "0.20.1" +version = "0.21.0" edition = "2021" homepage = "https://bitcoindevkit.org" repository = "https://github.com/bitcoindevkit/bdk" @@ -15,13 +15,13 @@ readme = "README.md" workspace = true [dependencies] -bdk_core = { path = "../core", version = "0.4.1", default-features = false } -esplora-client = { version = "0.11.0", default-features = false } +bdk_core = { path = "../core", version = "0.5.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 } [dev-dependencies] -esplora-client = { version = "0.11.0" } +esplora-client = { version = "0.12.0" } bdk_chain = { path = "../chain" } bdk_testenv = { path = "../testenv" } tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] } diff --git a/crates/file_store/Cargo.toml b/crates/file_store/Cargo.toml index 287f34da..061895ee 100644 --- a/crates/file_store/Cargo.toml +++ b/crates/file_store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_file_store" -version = "0.19.0" +version = "0.20.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.4.1", features = ["serde"]} +bdk_core = { path = "../core", version = "0.5.0", features = ["serde"]} bincode = { version = "1" } serde = { version = "1", features = ["derive"] } diff --git a/crates/testenv/Cargo.toml b/crates/testenv/Cargo.toml index 48f4d242..0332ca9f 100644 --- a/crates/testenv/Cargo.toml +++ b/crates/testenv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_testenv" -version = "0.11.1" +version = "0.12.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.21.1", default-features = false } +bdk_chain = { path = "../chain", version = "0.22.0", default-features = false } electrsd = { version = "0.28.0", features = [ "legacy" ], default-features = false } [dev-dependencies]