Merge #1726: Prepare v11.0-dev

a9d417bc39fd86e4d7338361d1ef8011a32f3575 Prepare v11.0-dev (edouardparis)

Pull request description:

ACKs for top commit:
  jp1ac4:
    ACK a9d417bc39fd86e4d7338361d1ef8011a32f3575.

Tree-SHA512: ab72ed6c69d523f4259874d4ab0fd3f703ebd0a550fe362bb32d371f728c508dcbbc810526b4037911facbf4ee8c7511e86f6c2e3dcb0afbf509cc40243843ca
This commit is contained in:
edouardparis 2025-05-26 13:38:06 +02:00
commit 638dc6e9ff
No known key found for this signature in database
GPG Key ID: E65F7A089C20DC8F
8 changed files with 10 additions and 10 deletions

6
Cargo.lock generated
View File

@ -2983,7 +2983,7 @@ dependencies = [
[[package]] [[package]]
name = "liana" name = "liana"
version = "10.0.0" version = "11.0.0"
dependencies = [ dependencies = [
"bdk_coin_select", "bdk_coin_select",
"bip39", "bip39",
@ -3006,7 +3006,7 @@ dependencies = [
[[package]] [[package]]
name = "liana-gui" name = "liana-gui"
version = "10.0.0" version = "11.0.0"
dependencies = [ dependencies = [
"async-fd-lock", "async-fd-lock",
"async-hwi", "async-hwi",
@ -3054,7 +3054,7 @@ dependencies = [
[[package]] [[package]]
name = "lianad" name = "lianad"
version = "10.0.0" version = "11.0.0"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"bdk_electrum", "bdk_electrum",

View File

@ -7,7 +7,7 @@
set -ex set -ex
VERSION="${VERSION:-"10.0"}" VERSION="${VERSION:-"11.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:-"10.0"}" VERSION="${VERSION:-"11.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 = "10.0.0" version = "11.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

@ -1,6 +1,6 @@
[package] [package]
name = "liana" name = "liana"
version = "10.0.0" version = "11.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 = "10.0.0" version = "11.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

@ -81,7 +81,7 @@ impl fmt::Display for Version {
} }
pub const VERSION: Version = Version { pub const VERSION: Version = Version {
major: 10, major: 11,
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"] == "10.0.0-dev" assert res["version"] == "11.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()