Merge #1150: gui: bump version to v6

973938fb20cfba75536623f21d4277c5407bb3cc gui: bump version to v6 (Antoine Poinsot)

Pull request description:

  In preparation of the rc1 release.

ACKs for top commit:
  darosior:
    self-ACK 973938fb20cfba75536623f21d4277c5407bb3cc

Tree-SHA512: 9f7cdaf88d800a16a0dcbd05b1d0cb20ee9e4aaae157cacff761cce822a29239d33eeb0a2cbe80429cb0bd28d46e84ef03e4d471b76cadbc8169a8cb3e9b0e75
This commit is contained in:
Antoine Poinsot 2024-06-28 15:13:16 +02:00
commit b6f49c4735
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304
4 changed files with 9 additions and 9 deletions

12
gui/Cargo.lock generated
View File

@ -310,9 +310,9 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "bdk_coin_select"
version = "0.1.1"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0320167c3655e83f0415d52f39618902e449186ffc7dfb090f922f79675c316"
checksum = "3c084bf76f0f67546fc814ffa82044144be1bb4618183a15016c162f8b087ad4"
[[package]]
name = "bech32"
@ -2579,8 +2579,8 @@ dependencies = [
[[package]]
name = "liana"
version = "5.0.0"
source = "git+https://github.com/wizardsardine/liana?branch=master#6d498db5e50d13a653e5592090873bf269107ed2"
version = "6.0.0"
source = "git+https://github.com/wizardsardine/liana?branch=master#585bb5b763127f4e0686ce8201fb846fa84137b9"
dependencies = [
"backtrace",
"bdk_coin_select",
@ -2600,7 +2600,7 @@ dependencies = [
[[package]]
name = "liana_gui"
version = "5.0.0"
version = "6.0.0"
dependencies = [
"async-hwi",
"async-trait",
@ -4205,7 +4205,7 @@ version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f622567e3b4b38154fb8190bcf6b160d7a4301d70595a49195b48c116007a27"
dependencies = [
"bitcoin_hashes 0.13.0",
"bitcoin_hashes 0.12.0",
"secp256k1-sys",
"serde",
]

View File

@ -1,6 +1,6 @@
[package]
name = "liana_gui"
version = "5.0.0"
version = "6.0.0"
readme = "README.md"
description = "Liana GUI"
repository = "https://github.com/wizardsardine/liana"

View File

@ -64,7 +64,7 @@ impl SpendTx {
secp: &secp256k1::Secp256k1<impl secp256k1::Verification>,
network: Network,
) -> Self {
let max_vbytes = desc.unsigned_tx_max_vbytes(&psbt.unsigned_tx);
let max_vbytes = desc.unsigned_tx_max_vbytes(&psbt.unsigned_tx, false);
let change_indexes: Vec<usize> = desc
.change_indexes(&psbt, secp)
.into_iter()

View File

@ -13,7 +13,7 @@ pub mod utils;
use liana::Version;
pub const VERSION: Version = Version {
major: 5,
major: 6,
minor: 0,
patch: 0,
};