Prepare v10.0

This commit is contained in:
edouardparis 2025-03-21 16:12:32 +01:00
parent aba7d3c41a
commit 88cebffb03
10 changed files with 13 additions and 13 deletions

8
Cargo.lock generated
View File

@ -3211,7 +3211,7 @@ dependencies = [
[[package]] [[package]]
name = "liana" name = "liana"
version = "9.0.0" version = "10.0.0"
dependencies = [ dependencies = [
"bdk_coin_select", "bdk_coin_select",
"bip39", "bip39",
@ -3234,7 +3234,7 @@ dependencies = [
[[package]] [[package]]
name = "liana-gui" name = "liana-gui"
version = "9.0.0" version = "10.0.0"
dependencies = [ dependencies = [
"async-hwi", "async-hwi",
"async-trait", "async-trait",
@ -3268,7 +3268,7 @@ dependencies = [
[[package]] [[package]]
name = "liana-ui" name = "liana-ui"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"bitcoin", "bitcoin",
"chrono", "chrono",
@ -3280,7 +3280,7 @@ dependencies = [
[[package]] [[package]]
name = "lianad" name = "lianad"
version = "9.0.0" version = "10.0.0"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"bdk_electrum", "bdk_electrum",

View File

@ -7,7 +7,7 @@
set -ex set -ex
VERSION="${VERSION:-"9.0"}" VERSION="${VERSION:-"10.0"}"
LIANA_PREFIX="liana-$VERSION" LIANA_PREFIX="liana-$VERSION"
LINUX_DIR_NAME="$LIANA_PREFIX-x86_64-linux-gnu" LINUX_DIR_NAME="$LIANA_PREFIX-x86_64-linux-gnu"
LINUX_ARCHIVE="$LINUX_DIR_NAME.tar.gz" LINUX_ARCHIVE="$LINUX_DIR_NAME.tar.gz"

View File

@ -3,7 +3,7 @@
set -e # Exit immediately if a command exits with a non-zero status set -e # Exit immediately if a command exits with a non-zero status
set -x # Print commands and their arguments as they are executed set -x # Print commands and their arguments as they are executed
VERSION="${VERSION:-"9.0"}" VERSION="${VERSION:-"10.0"}"
LIANA_PREFIX="liana-$VERSION" LIANA_PREFIX="liana-$VERSION"
# Define the release directory # Define the release directory
RELEASE_DIR="$PWD/release_assets" RELEASE_DIR="$PWD/release_assets"

View File

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

View File

@ -18,7 +18,7 @@ pub mod utils;
use lianad::Version; use lianad::Version;
pub const VERSION: Version = Version { pub const VERSION: Version = Version {
major: 9, major: 10,
minor: 0, minor: 0,
patch: 0, patch: 0,
}; };

View File

@ -1,6 +1,6 @@
[package] [package]
name = "liana-ui" name = "liana-ui"
version = "0.1.0" version = "0.2.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,6 +1,6 @@
[package] [package]
name = "liana" name = "liana"
version = "9.0.0" version = "10.0.0"
authors = ["Antoine Poinsot <darosior@protonmail.com>"] authors = ["Antoine Poinsot <darosior@protonmail.com>"]
edition = "2018" edition = "2018"
repository = "https://github.com/wizardsardine/liana" repository = "https://github.com/wizardsardine/liana"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "lianad" name = "lianad"
version = "9.0.0" version = "10.0.0"
authors = ["Antoine Poinsot <darosior@protonmail.com>"] authors = ["Antoine Poinsot <darosior@protonmail.com>"]
edition = "2018" edition = "2018"
repository = "https://github.com/wizardsardine/liana" repository = "https://github.com/wizardsardine/liana"

View File

@ -79,7 +79,7 @@ impl fmt::Display for Version {
} }
pub const VERSION: Version = Version { pub const VERSION: Version = Version {
major: 9, major: 10,
minor: 0, minor: 0,
patch: 0, patch: 0,
}; };

View File

@ -26,7 +26,7 @@ MAX_DERIV = 2**31 - 1
def test_getinfo(lianad): def test_getinfo(lianad):
res = lianad.rpc.getinfo() res = lianad.rpc.getinfo()
assert "timestamp" in res.keys() assert "timestamp" in res.keys()
assert res["version"] == "9.0.0-dev" assert res["version"] == "10.0.0-dev"
assert res["network"] == "regtest" assert res["network"] == "regtest"
wait_for(lambda: lianad.rpc.getinfo()["block_height"] == 101) wait_for(lambda: lianad.rpc.getinfo()["block_height"] == 101)
res = lianad.rpc.getinfo() res = lianad.rpc.getinfo()