From 0d630ce436a9c8a2968b292da7fd91062efab628 Mon Sep 17 00:00:00 2001 From: Songtronix Date: Thu, 6 Feb 2020 17:34:51 +0100 Subject: [PATCH 1/2] fix: missing dll --- .github/workflows/artifacts.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 9cd93f17..073ae360 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -51,6 +51,11 @@ jobs: # Build & Package airshipper - name: Install cargo-wix run: cargo install cargo-wix + - name: Enable static CRT linkage + run: | + mkdir .cargo + echo '[target.x86_64-pc-windows-msvc]' >> .cargo/config + echo 'rustflags = ["-Ctarget-feature=+crt-static"]' >> .cargo/config - name: Build run: cargo build --bin airshipper --release - name: MSI Installer From 63b7c8740418a19752dad4cb4060bf51e5796eaf Mon Sep 17 00:00:00 2001 From: Songtronix Date: Thu, 6 Feb 2020 17:35:33 +0100 Subject: [PATCH 2/2] release candiate: 0.2.1 --- client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index f3e4896e..687a7f49 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "airshipper" description = "Provides automatic updates for the voxel RPG Veloren." -version = "0.2.0" +version = "0.2.1" authors = ["Songtronix "] edition = "2018" publish = false