Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Nov 23, 2021
1 parent 2cc8794 commit 795fbd3
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
14 changes: 7 additions & 7 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.5.0-alpha.5"
version = "0.5.0"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Library for building descriptor-based bitcoin wallets"
Expand All @@ -19,11 +19,11 @@ crate-type = ["rlib", "staticlib"]

[dependencies]
amplify = "3.8.2"
descriptors = { version = "0.5.0-alpha.2", path = "./descriptors", optional = true }
bitcoin_scripts = { version = "0.5.0-alpha.3", path = "./scripts" }
bitcoin_hd = { version = "0.5.0-alpha.3", path = "./hd" }
psbt = { version = "0.5.0-alpha.2", path = "./psbt" }
slip132 = { version = "0.5.0-beta.1", path = "./slip132", features = ["strict_encoding"] }
descriptors = { version = "0.5.0", path = "./descriptors", optional = true }
bitcoin_scripts = { version = "0.5.0", path = "./scripts" }
bitcoin_hd = { version = "0.5.0", path = "./hd" }
psbt = { version = "0.5.0", path = "./psbt" }
slip132 = { version = "0.5.0", path = "./slip132", features = ["strict_encoding"] }
commit_verify = "0.5.4"
strict_encoding = { version = "1.6.1", features = ["bitcoin", "miniscript", "derive"] } # TODO #5: Make strict encoding optional and decrease MSRV
bitcoin = "0.27"
Expand Down
6 changes: 3 additions & 3 deletions descriptors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "descriptors"
version = "0.5.0-alpha.2"
version = "0.5.0"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Bitcoin descriptors library (part of descriptor-wallet)"
Expand All @@ -17,5 +17,5 @@ amplify = "3.8.2"
strict_encoding = { version = "1.6.1", features = ["miniscript"] }
bitcoin = "0.27.0"
miniscript = { version = "6.0.1", features = ["compiler"] }
bitcoin_hd = { version = "0.5.0-alpha.1", path = "../hd" }
bitcoin_scripts = { version = "0.5.0-alpha.1", path = "../scripts" }
bitcoin_hd = { version = "0.5.0", path = "../hd" }
bitcoin_scripts = { version = "0.5.0", path = "../scripts" }
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.5.0-alpha.3"
version = "0.5.0"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Bitcoin hierarchical deterministic wallet library"
Expand All @@ -17,7 +17,7 @@ amplify = "3.8.2"
strict_encoding = "1.6.1"
bitcoin = "0.27.0"
miniscript = "6.0.1"
slip132 = { version = "0.5.0-alpha.1", path = "../slip132" }
slip132 = { version = "0.5.0", path = "../slip132" }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.5", features = ["hex"], optional = true }

Expand Down
2 changes: 1 addition & 1 deletion libbitcoin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libbitcoin"
version = "0.2.0-alpha.2"
version = "0.2.0"
license = "Apache-2.0"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
description = "C library for building descriptor-based bitcoin wallets"
Expand Down
6 changes: 3 additions & 3 deletions psbt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "psbt"
version = "0.5.0-alpha.2"
version = "0.5.0"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Partially signed bitcoin transaction v0-2 library (bip174, bip370, bip371)"
Expand All @@ -15,5 +15,5 @@ exclude = []
[dependencies]
amplify = "3.8.2"
bitcoin = "0.27.0"
descriptors = { version = "0.5.0-alpha.1", path = "../descriptors" }
bitcoin_scripts = { version = "0.5.0-alpha.1", path = "../scripts" }
descriptors = { version = "0.5.0", path = "../descriptors" }
bitcoin_scripts = { version = "0.5.0", path = "../scripts" }
2 changes: 1 addition & 1 deletion scripts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoin_scripts"
version = "0.5.0-alpha.3"
version = "0.5.0"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Bitcoin extended script types"
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.5.0-beta.1"
version = "0.5.0"
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 795fbd3

Please sign in to comment.