From 3386b547de2ffbafda5335b11a5b494f65c5722c Mon Sep 17 00:00:00 2001 From: yuni Date: Sun, 15 Sep 2024 00:32:27 +0200 Subject: [PATCH] bump version to v0.10.2 --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- build/docker/Dockerfile | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7f1465..7b6c85b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v0.10.2 + +- Build with Ubuntu20.04 + Docker, so releases run on older systems + # v0.10.1 - Performance improvements diff --git a/Cargo.lock b/Cargo.lock index 8165c75..e014a79 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3056,7 +3056,7 @@ dependencies = [ [[package]] name = "outfly" -version = "0.10.1" +version = "0.10.2" dependencies = [ "bevy", "bevy_embedded_assets", diff --git a/Cargo.toml b/Cargo.toml index f50c650..7745223 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ [package] name = "outfly" -version = "0.10.1" +version = "0.10.2" edition = "2021" homepage = "https://codeberg.org/outfly/outfly" repository = "https://codeberg.org/outfly/outfly" diff --git a/build/docker/Dockerfile b/build/docker/Dockerfile index 19c27da..2f5ea95 100644 --- a/build/docker/Dockerfile +++ b/build/docker/Dockerfile @@ -3,5 +3,5 @@ FROM docker.io/ubuntu:20.04 RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt update && apt install -y -q git vim build-essential alsa-source alsa-tools libasound2-dev pkg-config libwayland-dev gcc-mingw-w64 zip RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y -RUN rustup target add x86_64-pc-windows-gnu +RUN /root/.cargo/bin/rustup target add x86_64-pc-windows-gnu ENV PATH "$PATH:/root/.cargo/bin"