From 82f9caddabecc3a52ba38ecc2e345e365d3b7d42 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Sun, 19 Mar 2023 23:00:37 -0500 Subject: [PATCH] Bump bdk version to 1.0.0-alpha.0 chain to 0.4.0 electrum to 0.2.0 esplora to 0.2.0 file_store to 0.1.0 --- crates/bdk/Cargo.toml | 2 +- crates/chain/Cargo.toml | 2 +- crates/electrum/Cargo.toml | 4 ++-- crates/esplora/Cargo.toml | 4 ++-- crates/file_store/Cargo.toml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/crates/bdk/Cargo.toml b/crates/bdk/Cargo.toml index bc00b6a7..cc95099d 100644 --- a/crates/bdk/Cargo.toml +++ b/crates/bdk/Cargo.toml @@ -19,7 +19,7 @@ miniscript = { version = "9", features = ["serde"] } bitcoin = { version = "0.29", features = ["serde", "base64", "rand"] } serde = { version = "^1.0", features = ["derive"] } serde_json = { version = "^1.0" } -bdk_chain = { path = "../chain", version = "0.3.1", features = ["miniscript", "serde"] } +bdk_chain = { path = "../chain", version = "0.4.0", features = ["miniscript", "serde"] } # Optional dependencies hwi = { version = "0.5", optional = true, features = [ "use-miniscript"] } diff --git a/crates/chain/Cargo.toml b/crates/chain/Cargo.toml index c3d0d77d..3d7408f9 100644 --- a/crates/chain/Cargo.toml +++ b/crates/chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_chain" -version = "0.3.1" +version = "0.4.0" edition = "2021" rust-version = "1.57" homepage = "https://bitcoindevkit.org" diff --git a/crates/electrum/Cargo.toml b/crates/electrum/Cargo.toml index a7a7ec2b..20eac4d3 100644 --- a/crates/electrum/Cargo.toml +++ b/crates/electrum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_electrum" -version = "0.1.0" +version = "0.2.0" edition = "2021" homepage = "https://bitcoindevkit.org" repository = "https://github.com/bitcoindevkit/bdk" @@ -12,5 +12,5 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bdk_chain = { path = "../chain", version = "0.3.1", features = ["serde", "miniscript"] } +bdk_chain = { path = "../chain", version = "0.4.0", features = ["serde", "miniscript"] } electrum-client = { version = "0.12" } diff --git a/crates/esplora/Cargo.toml b/crates/esplora/Cargo.toml index bacb2aad..e55b6fa0 100644 --- a/crates/esplora/Cargo.toml +++ b/crates/esplora/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_esplora" -version = "0.1.0" +version = "0.2.0" edition = "2021" homepage = "https://bitcoindevkit.org" repository = "https://github.com/bitcoindevkit/bdk" @@ -12,7 +12,7 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bdk_chain = { path = "../chain", version = "0.3.1", features = ["serde", "miniscript"] } +bdk_chain = { path = "../chain", version = "0.4.0", features = ["serde", "miniscript"] } esplora-client = { version = "0.3", 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 55b04d4f..e17593c1 100644 --- a/crates/file_store/Cargo.toml +++ b/crates/file_store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_file_store" -version = "0.0.1" +version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/bitcoindevkit/bdk" @@ -10,7 +10,7 @@ authors = ["Bitcoin Dev Kit Developers"] readme = "README.md" [dependencies] -bdk_chain = { path = "../chain", version = "0.3.1", features = [ "serde", "miniscript" ] } +bdk_chain = { path = "../chain", version = "0.4.0", features = [ "serde", "miniscript" ] } bincode = { version = "1" } serde = { version = "1", features = ["derive"] }