Skip to content

Commit

Permalink
Merge #1329: liana: v7.0rc1
Browse files Browse the repository at this point in the history
c80d3dd liana: v7.0rc1 (edouardparis)

Pull request description:

ACKs for top commit:
  edouardparis:
    Self-ACK c80d3dd

Tree-SHA512: 0682b02e584f57160d6a952ee27a2ba34544703e06f702dff87c0b258e0a00b7e999d9131584c73901024ce488584c559382e8f8edaf3c03e4dddbc2be0fb4f7
  • Loading branch information
edouardparis committed Sep 12, 2024
2 parents 9b37a14 + c80d3dd commit 56519b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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:-"7.0"}"
VERSION="${VERSION:-"7.0rc1"}"
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 @@ -81,7 +81,7 @@ pub struct Version {

impl fmt::Display for Version {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}.{}.{}-dev", self.major, self.minor, self.patch)
write!(f, "{}.{}.{}-rc1", self.major, self.minor, self.patch)
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/test_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
def test_getinfo(lianad):
res = lianad.rpc.getinfo()
assert "timestamp" in res.keys()
assert res["version"] == "7.0.0-dev"
assert res["version"] == "7.0.0-rc1"
assert res["network"] == "regtest"
wait_for(lambda: lianad.rpc.getinfo()["block_height"] == 101)
res = lianad.rpc.getinfo()
Expand Down

0 comments on commit 56519b7

Please sign in to comment.