Skip to content

Commit

Permalink
v0.9.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 25, 2022
1 parent 0176460 commit 5903610
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 24 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "descriptor-wallet"
version = "0.9.0-alpha.1"
version = "0.9.0-rc.1"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Libraries and command line tool for building descriptor-based bitcoin wallets"
Expand Down Expand Up @@ -32,12 +32,12 @@ strict_encoding_crate = { package = "strict_encoding", version = "0.9.0-rc.1", f
bitcoin = "0.29.2"
bitcoin_scripts = "0.9.0-rc.1"
bitcoin_blockchain = "0.9.0-rc.1"
bitcoin_hd = { version = "0.9.0-alpha.1", path = "./hd" }
bitcoin_onchain = { version = "0.9.0-alpha.1", path = "./onchain" }
bitcoin_hd = { version = "0.9.0-rc.1", path = "./hd" }
bitcoin_onchain = { version = "0.9.0-rc.1", path = "./onchain" }
bitcoin_hwi = { version = "0.2.0", optional = true }
descriptors = { version = "0.9.0-alpha.1", path = "./descriptors", optional = true, default-features = false }
psbt = { version = "0.9.0-alpha.1", path = "./psbt", default-features = false }
slip132 = { version = "0.9.0-alpha.1", path = "./slip132", features = ["strict_encoding"] }
descriptors = { version = "0.9.0-rc.1", path = "./descriptors", optional = true, default-features = false }
psbt = { version = "0.9.0-rc.1", path = "./psbt", default-features = false }
slip132 = { version = "0.9.0-rc.1", path = "./slip132", features = ["strict_encoding"] }
miniscript_crate = { package = "miniscript", version = "9.0.0", optional = true }
electrum-client = { version = "0.12.0", optional = true }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
Expand Down
4 changes: 2 additions & 2 deletions descriptors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "descriptors"
version = "0.9.0-alpha.1"
version = "0.9.0-rc.1"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Bitcoin descriptors library (part of descriptor-wallet)"
Expand All @@ -19,7 +19,7 @@ strict_encoding = "0.9.0-rc.1"
bitcoin = "0.29.2"
bitcoin_scripts = "0.9.0-rc.1"
bitcoin_blockchain = "0.9.0-rc.1"
bitcoin_hd = { version = "0.9.0-alpha.1", path = "../hd" }
bitcoin_hd = { version = "0.9.0-rc.1", path = "../hd" }
miniscript_crate = { package = "miniscript", version = "9.0.0", features = ["compiler"], optional = true }
chrono = "0.4.19"
serde_crate = { package = "serde", version = "1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions hd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoin_hd"
version = "0.9.0-alpha.1"
version = "0.9.0-rc.1"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Bitcoin hierarchical deterministic derivation library"
Expand All @@ -19,7 +19,7 @@ strict_encoding = "0.9.0-rc.1"
bitcoin = "0.29.2"
secp256k1 = { version = "0.24.2", features = ["global-context"] }
miniscript = { version = "9.0.0", optional = true }
slip132 = { version = "0.9.0-alpha.1", path = "../slip132" }
slip132 = { version = "0.9.0-rc.1", path = "../slip132" }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }

[features]
Expand Down
6 changes: 3 additions & 3 deletions onchain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoin_onchain"
version = "0.9.0-alpha.1"
version = "0.9.0-rc.1"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Bitcoin descriptors library (part of descriptor-wallet)"
Expand All @@ -17,8 +17,8 @@ exclude = []
amplify = "3.13.0"
bitcoin = "0.29.2"
strict_encoding = "0.9.0-rc.1"
bitcoin_hd = { version = "0.9.0-alpha.1", path = "../hd" }
descriptors = { version = "0.9.0-alpha.1", path = "../descriptors", optional = true }
bitcoin_hd = { version = "0.9.0-rc.1", path = "../hd" }
descriptors = { version = "0.9.0-rc.1", path = "../descriptors", optional = true }
miniscript = { version = "9.0.0", optional = true }
electrum-client = { version = "0.12.0", optional = true }
chrono = "0.4.19"
Expand Down
8 changes: 4 additions & 4 deletions psbt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "psbt"
version = "0.9.0-alpha.2"
version = "0.9.0-rc.1"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Partially signed bitcoin transaction v0-2 library (bip174, bip370, bip371)"
Expand All @@ -20,9 +20,9 @@ commit_verify = "0.9.0-rc.1"
bitcoin = { version = "0.29.2", features = ["base64"] }
bitcoin_scripts = "0.9.0-rc.1"
bitcoin_blockchain = "0.9.0-rc.1"
bitcoin_hd = { version = "0.9.0-alpha.1", path = "../hd" }
bitcoin_onchain = { version = "0.9.0-alpha.1", path = "../onchain" }
descriptors = { version = "0.9.0-alpha.1", path = "../descriptors", optional = true }
bitcoin_hd = { version = "0.9.0-rc.1", path = "../hd" }
bitcoin_onchain = { version = "0.9.0-rc.1", path = "../onchain" }
descriptors = { version = "0.9.0-rc.1", path = "../descriptors", optional = true }
miniscript = { version = "9.0.0", optional = true }
serde_crate = { package = "serde", version = "1", optional = true }
serde_with = { version = "1.14", features = ["hex"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion slip132/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "slip132"
version = "0.9.0-alpha.1"
version = "0.9.0-rc.1"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Bitcoin SLIP-132 standard implementation (parsing custom xpub/xpriv key formats)"
Expand Down

0 comments on commit 5903610

Please sign in to comment.