gui: version 8.0

This commit is contained in:
edouardparis 2024-11-05 12:18:52 +01:00
parent 89299f60b4
commit 81dc4eaa22
3 changed files with 7 additions and 7 deletions

10
gui/Cargo.lock generated
View File

@ -2705,8 +2705,8 @@ dependencies = [
[[package]]
name = "liana"
version = "7.0.0"
source = "git+https://github.com/wizardsardine/liana?branch=master#c2ce025a78891307e1f0d83c52cb983eb098d41d"
version = "8.0.0"
source = "git+https://github.com/wizardsardine/liana?branch=master#89299f60b4f1616ea0cb48aecd4763a5228f24d5"
dependencies = [
"backtrace",
"bdk_coin_select",
@ -2727,7 +2727,7 @@ dependencies = [
[[package]]
name = "liana_gui"
version = "7.0.0"
version = "8.0.0"
dependencies = [
"async-hwi",
"async-trait",
@ -4339,7 +4339,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 0.9.2",
"serde",
]
@ -4350,7 +4350,7 @@ version = "0.29.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113"
dependencies = [
"bitcoin_hashes 0.13.0",
"bitcoin_hashes 0.12.0",
"secp256k1-sys 0.10.1",
"serde",
]

View File

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

View File

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