Skip to content

Commit

Permalink
Release v0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Jun 30, 2022
1 parent a55af71 commit a72b7bf
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion 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 README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Descriptor wallet library

![Build](https://github.com/LNP-BP/descriptor-wallet/workflows/Build/badge.svg)
![Tests](https://github.com/LNP-BP/descriptor-wallet/workflows/Tests/badge.svg)
![Lints](https://github.com/LNP-BP/descriptor-wallet/workflows/Lints/badge.svg)
[![codecov](https://codecov.io/gh/LNP-BP/descriptor-wallet/branch/master/graph/badge.svg)](https://codecov.io/gh/LNP-BP/descriptor-wallet)
![Build](https://github.com/BP-WG/descriptor-wallet/workflows/Build/badge.svg)
![Tests](https://github.com/BP-WG/descriptor-wallet/workflows/Tests/badge.svg)
![Lints](https://github.com/BP-WG/descriptor-wallet/workflows/Lints/badge.svg)
[![codecov](https://codecov.io/gh/BP-WG/descriptor-wallet/branch/master/graph/badge.svg)](https://codecov.io/gh/BP-WG/descriptor-wallet)

[![crates.io](https://img.shields.io/crates/v/descriptor-wallet)](https://crates.io/crates/descriptor-wallet)
[![Docs](https://docs.rs/descriptor-wallet/badge.svg)](https://docs.rs/descriptor-wallet)
Expand Down Expand Up @@ -50,11 +50,11 @@ rust compiler and `rustup` tools to be already installed on a system):
```console
$ rustup default stable
$ rustup update
$ git clone https://github.com/LNP-BP/descriptor-wallet
$ git clone https://github.com/BP-WG/descriptor-wallet
$ cd descriptor-wallet
$ cargo install --path . --locked --all-features
```

This will add `btc-hot` and `btc-cold` commands to the system.

[bin]: https://github.com/LNP-BP/descriptor-wallet/tree/master/src/bin
[bin]: https://github.com/BP-WG/descriptor-wallet/tree/master/src/bin
1 change: 1 addition & 0 deletions hd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ exclude = []
amplify = "3.12.1"
strict_encoding = "0.8.0"
bitcoin = "0.28.1"
secp256k1 = { version = "0.22.1", features = ["global-context"] }
miniscript = { version = "7.0.0", optional = true }
slip132 = { version = "0.8.0", path = "../slip132" }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion hd/src/unsatisfiable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
// If not, see <https://opensource.org/licenses/Apache-2.0>.

use bitcoin::hashes::{sha256, Hash};
use bitcoin::secp256k1::{self, PublicKey, SECP256K1};
use bitcoin::util::bip32::ExtendedPubKey;
use secp256k1::{self, PublicKey, SECP256K1};

use crate::{DerivationAccount, DerivationSubpath, TerminalStep, XpubRef};

Expand Down
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.8.0"
version = "0.8.1"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Bitcoin extended script types"
Expand Down

0 comments on commit a72b7bf

Please sign in to comment.