Skip to content

Commit

Permalink
Merge #1348: v7: drop rc1
Browse files Browse the repository at this point in the history
7d1ea90 v7: drop rc1 (edouardparis)

Pull request description:

ACKs for top commit:
  edouardparis:
    Self-ACK 7d1ea90

Tree-SHA512: 462b933032303b5a8487085fe237d5bfa44b5f94f3c68ed1205cc18182cd1ace76eac0830916db7956bf42f5c215318b845847b273eb41937065acc78fb12d2d
  • Loading branch information
edouardparis committed Sep 17, 2024
2 parents 58624fb + 7d1ea90 commit cc802de
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.0rc1"}"
VERSION="${VERSION:-"7.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 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, "{}.{}.{}-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"] == "7.0.0-rc1"
assert res["version"] == "7.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 cc802de

Please sign in to comment.