diff --git a/Cargo.lock b/Cargo.lock index ba52bb17..74b3a99a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3211,7 +3211,7 @@ dependencies = [ [[package]] name = "liana" -version = "9.0.0" +version = "10.0.0" dependencies = [ "bdk_coin_select", "bip39", @@ -3234,7 +3234,7 @@ dependencies = [ [[package]] name = "liana-gui" -version = "9.0.0" +version = "10.0.0" dependencies = [ "async-hwi", "async-trait", @@ -3268,7 +3268,7 @@ dependencies = [ [[package]] name = "liana-ui" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bitcoin", "chrono", @@ -3280,7 +3280,7 @@ dependencies = [ [[package]] name = "lianad" -version = "9.0.0" +version = "10.0.0" dependencies = [ "backtrace", "bdk_electrum", diff --git a/contrib/release/release.sh b/contrib/release/release.sh index 1fa1e963..fc1859a6 100755 --- a/contrib/release/release.sh +++ b/contrib/release/release.sh @@ -7,7 +7,7 @@ set -ex -VERSION="${VERSION:-"9.0"}" +VERSION="${VERSION:-"10.0"}" LIANA_PREFIX="liana-$VERSION" LINUX_DIR_NAME="$LIANA_PREFIX-x86_64-linux-gnu" LINUX_ARCHIVE="$LINUX_DIR_NAME.tar.gz" diff --git a/contrib/release/sign.sh b/contrib/release/sign.sh index 123e701f..d7550530 100755 --- a/contrib/release/sign.sh +++ b/contrib/release/sign.sh @@ -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:-"10.0"}" LIANA_PREFIX="liana-$VERSION" # Define the release directory RELEASE_DIR="$PWD/release_assets" diff --git a/liana-gui/Cargo.toml b/liana-gui/Cargo.toml index 139cccc6..9c986202 100644 --- a/liana-gui/Cargo.toml +++ b/liana-gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liana-gui" -version = "9.0.0" +version = "10.0.0" readme = "README.md" description = "Liana GUI" repository = "https://github.com/wizardsardine/liana" diff --git a/liana-gui/src/lib.rs b/liana-gui/src/lib.rs index 411db157..42217a14 100644 --- a/liana-gui/src/lib.rs +++ b/liana-gui/src/lib.rs @@ -18,7 +18,7 @@ pub mod utils; use lianad::Version; pub const VERSION: Version = Version { - major: 9, + major: 10, minor: 0, patch: 0, }; diff --git a/liana-ui/Cargo.toml b/liana-ui/Cargo.toml index 2afc4565..42ce2875 100644 --- a/liana-ui/Cargo.toml +++ b/liana-ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liana-ui" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/liana/Cargo.toml b/liana/Cargo.toml index 9779dc48..feae6132 100644 --- a/liana/Cargo.toml +++ b/liana/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liana" -version = "9.0.0" +version = "10.0.0" authors = ["Antoine Poinsot "] edition = "2018" repository = "https://github.com/wizardsardine/liana" diff --git a/lianad/Cargo.toml b/lianad/Cargo.toml index d39b37a0..143c3e33 100644 --- a/lianad/Cargo.toml +++ b/lianad/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lianad" -version = "9.0.0" +version = "10.0.0" authors = ["Antoine Poinsot "] edition = "2018" repository = "https://github.com/wizardsardine/liana" diff --git a/lianad/src/lib.rs b/lianad/src/lib.rs index ea40ac46..84a63dcf 100644 --- a/lianad/src/lib.rs +++ b/lianad/src/lib.rs @@ -79,7 +79,7 @@ impl fmt::Display for Version { } pub const VERSION: Version = Version { - major: 9, + major: 10, minor: 0, patch: 0, }; diff --git a/tests/test_rpc.py b/tests/test_rpc.py index 39ea5b82..a2bcf9d6 100644 --- a/tests/test_rpc.py +++ b/tests/test_rpc.py @@ -26,7 +26,7 @@ MAX_DERIV = 2**31 - 1 def test_getinfo(lianad): res = lianad.rpc.getinfo() assert "timestamp" in res.keys() - assert res["version"] == "9.0.0-dev" + assert res["version"] == "10.0.0-dev" assert res["network"] == "regtest" wait_for(lambda: lianad.rpc.getinfo()["block_height"] == 101) res = lianad.rpc.getinfo()