Prepare v10.0
This commit is contained in:
parent
aba7d3c41a
commit
88cebffb03
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -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",
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -18,7 +18,7 @@ pub mod utils;
|
||||
use lianad::Version;
|
||||
|
||||
pub const VERSION: Version = Version {
|
||||
major: 9,
|
||||
major: 10,
|
||||
minor: 0,
|
||||
patch: 0,
|
||||
};
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -79,7 +79,7 @@ impl fmt::Display for Version {
|
||||
}
|
||||
|
||||
pub const VERSION: Version = Version {
|
||||
major: 9,
|
||||
major: 10,
|
||||
minor: 0,
|
||||
patch: 0,
|
||||
};
|
||||
|
||||
@ -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()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user