From ef0af76dab89f49e8a85896a5c3972628b676327 Mon Sep 17 00:00:00 2001 From: yuni Date: Sun, 15 Sep 2024 00:32:27 +0200 Subject: [PATCH] updated version from tag "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 f307d4f..d4c804a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ - Upgrade to Rust 1.80 +# v0.10.2 + +- Build with Ubuntu20.04 + Docker, so releases run on older systems + # v0.10.1 - Add character "Luna" near starting area 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 1b2ffcc..4498532 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"