updated version from tag "v0.10.2"

This commit is contained in:
yuni 2024-09-15 00:32:27 +02:00
parent 0f16779e78
commit ef0af76dab
4 changed files with 7 additions and 3 deletions

View file

@ -2,6 +2,10 @@
- Upgrade to Rust 1.80 - Upgrade to Rust 1.80
# v0.10.2
- Build with Ubuntu20.04 + Docker, so releases run on older systems
# v0.10.1 # v0.10.1
- Add character "Luna" near starting area - Add character "Luna" near starting area

2
Cargo.lock generated
View file

@ -3056,7 +3056,7 @@ dependencies = [
[[package]] [[package]]
name = "outfly" name = "outfly"
version = "0.10.1" version = "0.10.2"
dependencies = [ dependencies = [
"bevy", "bevy",
"bevy_embedded_assets", "bevy_embedded_assets",

View file

@ -10,7 +10,7 @@
[package] [package]
name = "outfly" name = "outfly"
version = "0.10.1" version = "0.10.2"
edition = "2021" edition = "2021"
homepage = "https://codeberg.org/outfly/outfly" homepage = "https://codeberg.org/outfly/outfly"
repository = "https://codeberg.org/outfly/outfly" repository = "https://codeberg.org/outfly/outfly"

View file

@ -3,5 +3,5 @@ FROM docker.io/ubuntu:20.04
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections 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 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 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" ENV PATH "$PATH:/root/.cargo/bin"