From f4d2a76661d465dd0640d54470b95cc7b5ece979 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Tue, 4 Jul 2023 12:28:06 -0500 Subject: [PATCH] Bump version to 1.0.0-alpha.1 --- crates/bdk/Cargo.toml | 4 ++-- crates/chain/Cargo.toml | 2 +- crates/electrum/Cargo.toml | 4 ++-- crates/esplora/Cargo.toml | 4 ++-- crates/esplora/README.md | 6 +++--- crates/file_store/Cargo.toml | 4 ++-- example-crates/example_cli/Cargo.toml | 2 +- example-crates/example_electrum/Cargo.toml | 2 +- example-crates/wallet_electrum/Cargo.toml | 2 +- example-crates/wallet_esplora/Cargo.toml | 2 +- example-crates/wallet_esplora_async/Cargo.toml | 2 +- 11 files changed, 17 insertions(+), 17 deletions(-) diff --git a/crates/bdk/Cargo.toml b/crates/bdk/Cargo.toml index a90f1ab0f..29b478d13 100644 --- a/crates/bdk/Cargo.toml +++ b/crates/bdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bdk" homepage = "https://bitcoindevkit.org" -version = "1.0.0-alpha.0" +version = "1.0.0-alpha.1" repository = "https://github.com/bitcoindevkit/bdk" documentation = "https://docs.rs/bdk" description = "A modern, lightweight, descriptor-based wallet library" @@ -19,7 +19,7 @@ miniscript = { version = "9", features = ["serde"], default-features = false } bitcoin = { version = "0.29", features = ["serde", "base64", "rand"], default-features = false } serde = { version = "^1.0", features = ["derive"] } serde_json = { version = "^1.0" } -bdk_chain = { path = "../chain", version = "0.4.0", features = ["miniscript", "serde"], default-features = false } +bdk_chain = { path = "../chain", version = "0.5.0", features = ["miniscript", "serde"], default-features = false } # Optional dependencies hwi = { version = "0.5", optional = true, features = [ "use-miniscript"] } diff --git a/crates/chain/Cargo.toml b/crates/chain/Cargo.toml index 03d5a1936..c25dd7129 100644 --- a/crates/chain/Cargo.toml +++ b/crates/chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_chain" -version = "0.4.0" +version = "0.5.0" edition = "2021" rust-version = "1.57" homepage = "https://bitcoindevkit.org" diff --git a/crates/electrum/Cargo.toml b/crates/electrum/Cargo.toml index 20eac4d37..827a13274 100644 --- a/crates/electrum/Cargo.toml +++ b/crates/electrum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_electrum" -version = "0.2.0" +version = "0.3.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.4.0", features = ["serde", "miniscript"] } +bdk_chain = { path = "../chain", version = "0.5.0", features = ["serde", "miniscript"] } electrum-client = { version = "0.12" } diff --git a/crates/esplora/Cargo.toml b/crates/esplora/Cargo.toml index 8c3cf3e8a..39c7db026 100644 --- a/crates/esplora/Cargo.toml +++ b/crates/esplora/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_esplora" -version = "0.2.0" +version = "0.3.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.4.0", default-features = false, features = ["serde", "miniscript"] } +bdk_chain = { path = "../chain", version = "0.5.0", default-features = false, features = ["serde", "miniscript"] } esplora-client = { version = "0.5", default-features = false } async-trait = { version = "0.1.66", optional = true } futures = { version = "0.3.26", optional = true } diff --git a/crates/esplora/README.md b/crates/esplora/README.md index e2ffef597..236663279 100644 --- a/crates/esplora/README.md +++ b/crates/esplora/README.md @@ -9,17 +9,17 @@ There are two versions of the extension trait (blocking and async). For blocking-only: ```toml -bdk_esplora = { version = "0.1", features = ["blocking"] } +bdk_esplora = { version = "0.3", features = ["blocking"] } ``` For async-only: ```toml -bdk_esplora = { version = "0.1", features = ["async"] } +bdk_esplora = { version = "0.3", features = ["async"] } ``` For async-only (with https): ```toml -bdk_esplora = { version = "0.1", features = ["async-https"] } +bdk_esplora = { version = "0.3", features = ["async-https"] } ``` To use the extension traits: diff --git a/crates/file_store/Cargo.toml b/crates/file_store/Cargo.toml index 791780409..391a21e22 100644 --- a/crates/file_store/Cargo.toml +++ b/crates/file_store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_file_store" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/bitcoindevkit/bdk" @@ -11,7 +11,7 @@ authors = ["Bitcoin Dev Kit Developers"] readme = "README.md" [dependencies] -bdk_chain = { path = "../chain", version = "0.4.0", features = [ "serde", "miniscript" ] } +bdk_chain = { path = "../chain", version = "0.5.0", features = [ "serde", "miniscript" ] } bincode = { version = "1" } serde = { version = "1", features = ["derive"] } diff --git a/example-crates/example_cli/Cargo.toml b/example-crates/example_cli/Cargo.toml index ffad2f913..c85d2e996 100644 --- a/example-crates/example_cli/Cargo.toml +++ b/example-crates/example_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "example_cli" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/example-crates/example_electrum/Cargo.toml b/example-crates/example_electrum/Cargo.toml index 49d158e91..9dcd54000 100644 --- a/example-crates/example_electrum/Cargo.toml +++ b/example-crates/example_electrum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "example_electrum" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/example-crates/wallet_electrum/Cargo.toml b/example-crates/wallet_electrum/Cargo.toml index da84e85f1..37a0f926a 100644 --- a/example-crates/wallet_electrum/Cargo.toml +++ b/example-crates/wallet_electrum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wallet_electrum_example" -version = "0.1.0" +version = "0.2.0" edition = "2021" [dependencies] diff --git a/example-crates/wallet_esplora/Cargo.toml b/example-crates/wallet_esplora/Cargo.toml index e58a4c2b3..1dcef389e 100644 --- a/example-crates/wallet_esplora/Cargo.toml +++ b/example-crates/wallet_esplora/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wallet_esplora" -version = "0.1.0" +version = "0.2.0" edition = "2021" publish = false diff --git a/example-crates/wallet_esplora_async/Cargo.toml b/example-crates/wallet_esplora_async/Cargo.toml index af368fc8d..f67cecb48 100644 --- a/example-crates/wallet_esplora_async/Cargo.toml +++ b/example-crates/wallet_esplora_async/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wallet_esplora_async" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html