Skip to content

Commit

Permalink
Merge #1435: liana: prepare tag rc1
Browse files Browse the repository at this point in the history
b0015ff liana: prepare tag rc1 (edouardparis)

Pull request description:

  example #1037

ACKs for top commit:
  edouardparis:
    Self-ACK b0015ff

Tree-SHA512: 746e77c8c6d8b7bfebf4962d7b9ab25ad33005425b5f4347724ef7564e1d518f051729d67b170c9ba220d1e01b3c6e65b85fba675c27fbf8b7f187bae5f64f54
  • Loading branch information
edouardparis committed Nov 5, 2024
2 parents 2fa8294 + b0015ff commit 08de5d6
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:-"8.0"}"
VERSION="${VERSION:-"8.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"] == "8.0.0-dev"
assert res["version"] == "8.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 08de5d6

Please sign in to comment.