Skip to content

Commit

Permalink
Merge #1545: prepare version 9.0
Browse files Browse the repository at this point in the history
f095cc6 prepare version 9.0 (edouardparis)

Pull request description:

ACKs for top commit:
  edouardparis:
    Self-ACK f095cc6

Tree-SHA512: 3c924e3cc55192d2a9080dd91110ed2eff692b82605f1ba7e1c929854bc4d1ec97a9799dc8c4182748a6c30374fdfe3795c906bb71ce8bc5a4bd4ada5ce042fc
  • Loading branch information
edouardparis committed Jan 15, 2025
2 parents 18058fe + f095cc6 commit 398e622
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-rc1"}"
VERSION="${VERSION:-"9.0"}"
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-rc1"}"
VERSION="${VERSION:-"9.0"}"
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, "{}.{}.{}-rc1", self.major, self.minor, self.patch)
write!(f, "{}.{}.{}", 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-rc1"
assert res["version"] == "9.0.0"
assert res["network"] == "regtest"
wait_for(lambda: lianad.rpc.getinfo()["block_height"] == 101)
res = lianad.rpc.getinfo()
Expand Down

0 comments on commit 398e622

Please sign in to comment.