Skip to content

Commit ba76247

Browse files
committed
Merge #1307: Bump version to 1.0.0-alpha.5
d597f4c Bump version to 1.0.0-alpha.5 (Steve Myers) Pull request description: ### Description Bump version to 1.0.0-alpha.5 bdk_chain to 0.9.0 bdk_bitcoind_rpc to 0.4.0 bdk_electrum to 0.7.0 bdk_esplora to 0.7.0 bdk_file_store to 0.5.0 ### Checklists #### All Submissions: * [x] I've signed all my commits * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [x] I ran `cargo fmt` and `cargo clippy` before committing ACKs for top commit: danielabrozzoni: ACK d597f4c Tree-SHA512: 36ba783083441ddd8d209ede35ff46832fd2532f588ddbff0e4e23fb336aff398f8ca612e2bfd5fa214d0f4c14a4dea9147b34724734cc43b752789765e7a447
2 parents f099b42 + d597f4c commit ba76247

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

crates/bdk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bdk"
33
homepage = "https://bitcoindevkit.org"
4-
version = "1.0.0-alpha.4"
4+
version = "1.0.0-alpha.5"
55
repository = "https://github.com/bitcoindevkit/bdk"
66
documentation = "https://docs.rs/bdk"
77
description = "A modern, lightweight, descriptor-based wallet library"
@@ -18,7 +18,7 @@ miniscript = { version = "10.0.0", features = ["serde"], default-features = fals
1818
bitcoin = { version = "0.30.0", features = ["serde", "base64", "rand-std"], default-features = false }
1919
serde = { version = "^1.0", features = ["derive"] }
2020
serde_json = { version = "^1.0" }
21-
bdk_chain = { path = "../chain", version = "0.8.0", features = ["miniscript", "serde"], default-features = false }
21+
bdk_chain = { path = "../chain", version = "0.9.0", features = ["miniscript", "serde"], default-features = false }
2222

2323
# Optional dependencies
2424
bip39 = { version = "2.0", optional = true }

crates/bitcoind_rpc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_bitcoind_rpc"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.63"
66
homepage = "https://bitcoindevkit.org"
@@ -16,7 +16,7 @@ readme = "README.md"
1616
# For no-std, remember to enable the bitcoin/no-std feature
1717
bitcoin = { version = "0.30", default-features = false }
1818
bitcoincore-rpc = { version = "0.17" }
19-
bdk_chain = { path = "../chain", version = "0.8", default-features = false }
19+
bdk_chain = { path = "../chain", version = "0.9", default-features = false }
2020

2121
[dev-dependencies]
2222
bitcoind = { version = "0.33", features = ["25_0"] }

crates/chain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_chain"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
rust-version = "1.63"
66
homepage = "https://bitcoindevkit.org"

crates/electrum/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_electrum"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
homepage = "https://bitcoindevkit.org"
66
repository = "https://github.com/bitcoindevkit/bdk"
@@ -12,6 +12,6 @@ readme = "README.md"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
bdk_chain = { path = "../chain", version = "0.8.0", default-features = false }
15+
bdk_chain = { path = "../chain", version = "0.9.0", default-features = false }
1616
electrum-client = { version = "0.18" }
1717
#rustls = { version = "=0.21.1", optional = true, features = ["dangerous_configuration"] }

crates/esplora/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_esplora"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
homepage = "https://bitcoindevkit.org"
66
repository = "https://github.com/bitcoindevkit/bdk"
@@ -12,7 +12,7 @@ readme = "README.md"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
bdk_chain = { path = "../chain", version = "0.8.0", default-features = false }
15+
bdk_chain = { path = "../chain", version = "0.9.0", default-features = false }
1616
esplora-client = { version = "0.6.0", default-features = false }
1717
async-trait = { version = "0.1.66", optional = true }
1818
futures = { version = "0.3.26", optional = true }

crates/file_store/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_file_store"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/bitcoindevkit/bdk"
@@ -11,7 +11,7 @@ authors = ["Bitcoin Dev Kit Developers"]
1111
readme = "README.md"
1212

1313
[dependencies]
14-
bdk_chain = { path = "../chain", version = "0.8.0", features = [ "serde", "miniscript" ] }
14+
bdk_chain = { path = "../chain", version = "0.9.0", features = [ "serde", "miniscript" ] }
1515
bincode = { version = "1" }
1616
serde = { version = "1", features = ["derive"] }
1717

0 commit comments

Comments
 (0)