From 03c7d44aad05f5acfb4dbf44d2303038171bdbc4 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Thu, 25 Dec 2025 23:47:14 -0600 Subject: [PATCH] Release v0.8.0 - Replaced "bevy_spatial" with "avian2d" - Upgraded Bevy to 0.17 The bevy_spatial crate is still stuck on Bevy 0.16 and I'd like to move forward and start playing with some of the new UI stuff. I've replaced it with Avian physics, although I'm only using the spatial querying facilities not the rest of the physics engine. --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 353ab959..12d7fede 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -175,7 +175,7 @@ dependencies = [ [[package]] name = "another-boids-in-rust" -version = "0.7.0" +version = "0.8.0" dependencies = [ "avian2d", "bevy", diff --git a/Cargo.toml b/Cargo.toml index 80ee3a32..889ad224 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "another-boids-in-rust" -version = "0.7.0" +version = "0.8.0" edition = "2024" license = "AGPL-3.0-only" rust-version = "1.88.0"