Skip to content

Commit

Permalink
Merge #1520: v9.0-rc1
Browse files Browse the repository at this point in the history
3c107e4 v9.0-rc1 (edouardparis)

Pull request description:

ACKs for top commit:
  edouardparis:
    Self-ACK 3c107e4

Tree-SHA512: 0201b5c385a5101eca11c149565402db9a731c726cb11bbbaa3321200e401b4b403dc7a7626f1d8bb352398b360b4628963cdfd65d68705635d431d76428fb8c
  • Loading branch information
edouardparis committed Jan 7, 2025
2 parents 451ba88 + 3c107e4 commit c43d3bf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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:-"9.0"}"
VERSION="${VERSION:-"9.0-rc1"}"
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 contrib/release/sign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e # Exit immediately if a command exits with a non-zero status
set -x # Print commands and their arguments as they are executed

VERSION="${VERSION:-"9.0"}"
VERSION="${VERSION:-"9.0-rc1"}"
LIANA_PREFIX="liana-$VERSION"
# Define the release directory
RELEASE_DIR="$PWD/release_assets"
Expand Down
2 changes: 1 addition & 1 deletion lianad/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,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"] == "9.0.0-dev"
assert res["version"] == "9.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 c43d3bf

Please sign in to comment.