From a9d417bc39fd86e4d7338361d1ef8011a32f3575 Mon Sep 17 00:00:00 2001 From: edouardparis Date: Mon, 26 May 2025 11:11:46 +0200 Subject: [PATCH] Prepare v11.0-dev --- Cargo.lock | 6 +++--- contrib/release/release.sh | 2 +- contrib/release/sign.sh | 2 +- liana-gui/Cargo.toml | 2 +- liana/Cargo.toml | 2 +- lianad/Cargo.toml | 2 +- lianad/src/lib.rs | 2 +- tests/test_rpc.py | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2c38c790..512dae5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2983,7 +2983,7 @@ dependencies = [ [[package]] name = "liana" -version = "10.0.0" +version = "11.0.0" dependencies = [ "bdk_coin_select", "bip39", @@ -3006,7 +3006,7 @@ dependencies = [ [[package]] name = "liana-gui" -version = "10.0.0" +version = "11.0.0" dependencies = [ "async-fd-lock", "async-hwi", @@ -3054,7 +3054,7 @@ dependencies = [ [[package]] name = "lianad" -version = "10.0.0" +version = "11.0.0" dependencies = [ "backtrace", "bdk_electrum", diff --git a/contrib/release/release.sh b/contrib/release/release.sh index fc1859a6..be005388 100755 --- a/contrib/release/release.sh +++ b/contrib/release/release.sh @@ -7,7 +7,7 @@ set -ex -VERSION="${VERSION:-"10.0"}" +VERSION="${VERSION:-"11.0"}" LIANA_PREFIX="liana-$VERSION" LINUX_DIR_NAME="$LIANA_PREFIX-x86_64-linux-gnu" LINUX_ARCHIVE="$LINUX_DIR_NAME.tar.gz" diff --git a/contrib/release/sign.sh b/contrib/release/sign.sh index d7550530..57213317 100755 --- a/contrib/release/sign.sh +++ b/contrib/release/sign.sh @@ -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:-"10.0"}" +VERSION="${VERSION:-"11.0"}" LIANA_PREFIX="liana-$VERSION" # Define the release directory RELEASE_DIR="$PWD/release_assets" diff --git a/liana-gui/Cargo.toml b/liana-gui/Cargo.toml index bc076839..98a5f092 100644 --- a/liana-gui/Cargo.toml +++ b/liana-gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liana-gui" -version = "10.0.0" +version = "11.0.0" readme = "README.md" description = "Liana GUI" repository = "https://github.com/wizardsardine/liana" diff --git a/liana/Cargo.toml b/liana/Cargo.toml index feae6132..2824f9d6 100644 --- a/liana/Cargo.toml +++ b/liana/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liana" -version = "10.0.0" +version = "11.0.0" authors = ["Antoine Poinsot "] edition = "2018" repository = "https://github.com/wizardsardine/liana" diff --git a/lianad/Cargo.toml b/lianad/Cargo.toml index e9e5eea6..1675a0e9 100644 --- a/lianad/Cargo.toml +++ b/lianad/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lianad" -version = "10.0.0" +version = "11.0.0" authors = ["Antoine Poinsot "] edition = "2018" repository = "https://github.com/wizardsardine/liana" diff --git a/lianad/src/lib.rs b/lianad/src/lib.rs index 8ff2306b..904dac3a 100644 --- a/lianad/src/lib.rs +++ b/lianad/src/lib.rs @@ -81,7 +81,7 @@ impl fmt::Display for Version { } pub const VERSION: Version = Version { - major: 10, + major: 11, minor: 0, patch: 0, }; diff --git a/tests/test_rpc.py b/tests/test_rpc.py index 29bf6c4c..18f9d97d 100644 --- a/tests/test_rpc.py +++ b/tests/test_rpc.py @@ -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"] == "10.0.0-dev" + assert res["version"] == "11.0.0-dev" assert res["network"] == "regtest" wait_for(lambda: lianad.rpc.getinfo()["block_height"] == 101) res = lianad.rpc.getinfo()