Merge #357: Release 0.3

b8cd0d0e27f1a507edad4521303c8f45587db973 Bump version to 0.3 (Antoine Poinsot)
4226da3c5a27d585134798fc172258d2dc4e4f0c CHANGELOG: 0.3 release notes (Antoine Poinsot)

Pull request description:

ACKs for top commit:
  darosior:
    ACK b8cd0d0e27f1a507edad4521303c8f45587db973

Tree-SHA512: dfb0680cb3ab682023c6db6462c61fee98eb9551a7d0b678ed4fefb9baffe8780bfa1e6a7b5a8e50029bf910cb1beb3b3269b1cd63158e9cc5a16691300b1f3f
This commit is contained in:
Antoine Poinsot 2023-02-27 14:48:48 +01:00
commit fbde855ede
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304
6 changed files with 28 additions and 5 deletions

View File

@ -1,5 +1,28 @@
# Liana daemon and GUI release notes
## 0.3
A small release which brings some fixes as well as the possibility to use Liana as a "hot wallet".
### Features
- Hot keys: users can now generate and sign with keys that are stored on the device. It is
recommended to be only used for testing for now.
#### GUI-specific
- It is now possible to use multiple signing device of the same type without having to first connect
one then the other.
### Fixes
- When used as a daemon the `lianad` process had its PID and logs file mixed up. This is now fixed.
- We fixed the transaction creation sanity check that was overestimating the transaction fee.
#### GUI-specific
- In the installer flow, extended keys are now shared without the `/<0;1>/*` suffix.
## 0.2
The second release of Liana brings various fixes as well as the possibility to use a multisig in

2
Cargo.lock generated
View File

@ -223,7 +223,7 @@ dependencies = [
[[package]]
name = "liana"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"backtrace",
"base64",

View File

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

View File

@ -7,7 +7,7 @@
set -ex
VERSION="${VERSION:-"0.2"}"
VERSION="${VERSION:-"0.3"}"
LIANA_PREFIX="liana-$VERSION"
LINUX_DIR_NAME="$LIANA_PREFIX-x86_64-linux-gnu"
LINUX_ARCHIVE="$LINUX_DIR_NAME.tar.gz"

View File

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

View File

@ -20,7 +20,7 @@ from test_framework.utils import (
def test_getinfo(lianad):
res = lianad.rpc.getinfo()
assert res["version"] == "0.2.0"
assert res["version"] == "0.3.0"
assert res["network"] == "regtest"
wait_for(lambda: lianad.rpc.getinfo()["block_height"] == 101)
res = lianad.rpc.getinfo()