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

View File

@ -7,7 +7,7 @@
set -ex
VERSION="${VERSION:-"9.0"}"
VERSION="${VERSION:-"10.0"}"
LIANA_PREFIX="liana-$VERSION"
LINUX_DIR_NAME="$LIANA_PREFIX-x86_64-linux-gnu"
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 -x # Print commands and their arguments as they are executed
VERSION="${VERSION:-"9.0"}"
VERSION="${VERSION:-"10.0"}"
LIANA_PREFIX="liana-$VERSION"
# Define the release directory
RELEASE_DIR="$PWD/release_assets"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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