Merge #1782: Prepare version 12.0
4fd32a8dcee301097d5cbce0ac22561e9afe70b8 Add v11.1 release note to changelog (edouardparis)
b6971fdd6410786517d632bdff970d7f21198d8f Prepare version 12.0 (edouardparis)
Pull request description:
ACKs for top commit:
jp1ac4:
ACK 4fd32a8dcee301097d5cbce0ac22561e9afe70b8.
Tree-SHA512: 4416ef1c3b10cc8deeb269331c493efc2a0da8be85d89ddec8d121be937b2f06c59786ec7f1bd633db5d7dc6abe5a1e9582d19144fef0396a823e06146fe3ad1
This commit is contained in:
commit
97ff9ee1de
@ -25,6 +25,12 @@ And fixes some small issues:
|
||||
* fix(poller): only update last used index for affected keychain.
|
||||
* liana-ui: add warning to form::Value.
|
||||
|
||||
## 11.1
|
||||
|
||||
This release adds some fixes for the liana-gui software:
|
||||
|
||||
- fix incorrect path to daemon.toml in liana-gui settings
|
||||
- fix checks for whether wallet uses managed bitcoind
|
||||
|
||||
## 11.0
|
||||
|
||||
|
||||
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -3047,7 +3047,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "liana"
|
||||
version = "11.0.0"
|
||||
version = "12.0.0"
|
||||
dependencies = [
|
||||
"bdk_coin_select",
|
||||
"bip39",
|
||||
@ -3070,7 +3070,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "liana-gui"
|
||||
version = "11.0.0"
|
||||
version = "12.0.0"
|
||||
dependencies = [
|
||||
"async-fd-lock",
|
||||
"async-hwi",
|
||||
@ -3122,7 +3122,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "lianad"
|
||||
version = "11.0.0"
|
||||
version = "12.0.0"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
"bdk_electrum",
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
set -ex
|
||||
|
||||
VERSION="${VERSION:-"11.0"}"
|
||||
VERSION="${VERSION:-"12.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:-"11.0"}"
|
||||
VERSION="${VERSION:-"12.0"}"
|
||||
LIANA_PREFIX="liana-$VERSION"
|
||||
# Define the release directory
|
||||
RELEASE_DIR="$PWD/release_assets"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "liana-gui"
|
||||
version = "11.0.0"
|
||||
version = "12.0.0"
|
||||
readme = "README.md"
|
||||
description = "Liana GUI"
|
||||
repository = "https://github.com/wizardsardine/liana"
|
||||
|
||||
@ -20,7 +20,7 @@ pub mod utils;
|
||||
use lianad::Version;
|
||||
|
||||
pub const VERSION: Version = Version {
|
||||
major: 11,
|
||||
major: 12,
|
||||
minor: 0,
|
||||
};
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "liana"
|
||||
version = "11.0.0"
|
||||
version = "12.0.0"
|
||||
authors = ["Antoine Poinsot <darosior@protonmail.com>"]
|
||||
edition = "2018"
|
||||
repository = "https://github.com/wizardsardine/liana"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "lianad"
|
||||
version = "11.0.0"
|
||||
version = "12.0.0"
|
||||
authors = ["Antoine Poinsot <darosior@protonmail.com>"]
|
||||
edition = "2018"
|
||||
repository = "https://github.com/wizardsardine/liana"
|
||||
|
||||
@ -80,7 +80,7 @@ impl fmt::Display for Version {
|
||||
}
|
||||
|
||||
pub const VERSION: Version = Version {
|
||||
major: 11,
|
||||
major: 12,
|
||||
minor: 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"] == "11.0-dev"
|
||||
assert res["version"] == "12.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