From b23b49ebdf738da9175d4bf063316fafebaa89b5 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Mon, 31 Jul 2023 13:40:33 +0200 Subject: [PATCH 1/2] gui: release 1.1.0 --- gui/Cargo.lock | 6 +++--- gui/Cargo.toml | 2 +- gui/src/lib.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gui/Cargo.lock b/gui/Cargo.lock index 4a43ed744..d2ab25429 100644 --- a/gui/Cargo.lock +++ b/gui/Cargo.lock @@ -1840,8 +1840,8 @@ dependencies = [ [[package]] name = "liana" -version = "1.0.0" -source = "git+https://github.com/wizardsardine/liana?branch=1.0#68c8f65b4911d715bd5aeae3305de76d59be3569" +version = "1.1.0" +source = "git+https://github.com/wizardsardine/liana?branch=1.0#9c23d014f973f08a6a008a89dfcbd9679b99f381" dependencies = [ "backtrace", "base64", @@ -1861,7 +1861,7 @@ dependencies = [ [[package]] name = "liana_gui" -version = "1.0.0" +version = "1.1.0" dependencies = [ "async-hwi", "backtrace", diff --git a/gui/Cargo.toml b/gui/Cargo.toml index 3d80c243c..17ef39dd5 100644 --- a/gui/Cargo.toml +++ b/gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liana_gui" -version = "1.0.0" +version = "1.1.0" readme = "README.md" description = "Liana GUI" repository = "https://github.com/wizardsardine/liana" diff --git a/gui/src/lib.rs b/gui/src/lib.rs index 2e0de280f..1e15e5b1c 100644 --- a/gui/src/lib.rs +++ b/gui/src/lib.rs @@ -12,6 +12,6 @@ use liana::Version; pub const VERSION: Version = Version { major: 1, - minor: 0, + minor: 1, patch: 0, }; From 0964037428eaf71d4fb8fd01d2651b32a29aeaf8 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Mon, 31 Jul 2023 13:51:05 +0200 Subject: [PATCH 2/2] contrib: bump version to 1.1 in release script --- contrib/release/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/release/release.sh b/contrib/release/release.sh index 7cbfcfa88..61333134d 100755 --- a/contrib/release/release.sh +++ b/contrib/release/release.sh @@ -7,7 +7,7 @@ set -ex -VERSION="${VERSION:-"1.0"}" +VERSION="${VERSION:-"1.1"}" LIANA_PREFIX="liana-$VERSION" LINUX_DIR_NAME="$LIANA_PREFIX-x86_64-linux-gnu" LINUX_ARCHIVE="$LINUX_DIR_NAME.tar.gz"