Bump version to 0.3

This commit is contained in:
Antoine Poinsot 2023-02-27 14:34:33 +01:00
parent 4226da3c5a
commit b8cd0d0e27
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304
5 changed files with 5 additions and 5 deletions

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