Skip to content

Commit

Permalink
Merge #357: Release 0.3
Browse files Browse the repository at this point in the history
b8cd0d0 Bump version to 0.3 (Antoine Poinsot)
4226da3 CHANGELOG: 0.3 release notes (Antoine Poinsot)

Pull request description:

ACKs for top commit:
  darosior:
    ACK b8cd0d0

Tree-SHA512: dfb0680cb3ab682023c6db6462c61fee98eb9551a7d0b678ed4fefb9baffe8780bfa1e6a7b5a8e50029bf910cb1beb3b3269b1cd63158e9cc5a16691300b1f3f
  • Loading branch information
darosior committed Feb 27, 2023
2 parents ca5c368 + b8cd0d0 commit fbde855
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 5 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liana"
version = "0.2.0"
version = "0.3.0"
authors = ["Antoine Poinsot <[email protected]>"]
edition = "2018"
repository = "https://github.com/wizardsardine/liana"
Expand Down
2 changes: 1 addition & 1 deletion contrib/release/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl fmt::Display for Version {

pub const VERSION: Version = Version {
major: 0,
minor: 2,
minor: 3,
patch: 0,
};

Expand Down
2 changes: 1 addition & 1 deletion tests/test_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

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()
Expand Down

0 comments on commit fbde855

Please sign in to comment.