diff --git a/CHANGELOG.md b/CHANGELOG.md index fe9af6c2..51defbde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 96b341ce..fee56107 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -223,7 +223,7 @@ dependencies = [ [[package]] name = "liana" -version = "0.2.0" +version = "0.3.0" dependencies = [ "backtrace", "base64", diff --git a/Cargo.toml b/Cargo.toml index e7161e75..9258c5c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liana" -version = "0.2.0" +version = "0.3.0" authors = ["Antoine Poinsot "] edition = "2018" repository = "https://github.com/wizardsardine/liana" diff --git a/contrib/release/release.sh b/contrib/release/release.sh index ad019670..5e74b46a 100755 --- a/contrib/release/release.sh +++ b/contrib/release/release.sh @@ -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" diff --git a/src/lib.rs b/src/lib.rs index 8b1cc4c5..bee7934d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -79,7 +79,7 @@ impl fmt::Display for Version { pub const VERSION: Version = Version { major: 0, - minor: 2, + minor: 3, patch: 0, }; diff --git a/tests/test_rpc.py b/tests/test_rpc.py index 66d2103c..2e8cc87a 100644 --- a/tests/test_rpc.py +++ b/tests/test_rpc.py @@ -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()