From 401bcf9a58b4da00e808ea8f4734644df86cdb78 Mon Sep 17 00:00:00 2001 From: Aevyrie Date: Mon, 30 Oct 2023 02:41:40 -0700 Subject: [PATCH] v0.15.0 release prep --- CHANGELOG.md | 1 + Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cff40c..02b99ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ intersections. - Changed: removed unused `Reflect` derive from `RaycastSettings`. This struct is neither a resource nor a component. +- Changed: unified the look of debug gizmos across the immediate and deferred APIs. # 0.14.1 diff --git a/Cargo.toml b/Cargo.toml index fc0c73c..5f01549 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_raycast" -version = "0.15.0-dev" +version = "0.15.0" authors = ["Aevyrie "] edition = "2021" license = "MIT" diff --git a/README.md b/README.md index 27391a6..d39ddf6 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ A small [Bevy](https://github.com/bevyengine/bevy) plugin for mesh raycasting. ## Getting Started -Using the [`Raycast`](https://docs.rs/bevy_mod_raycast/latest/bevy_mod_raycast/system_param/struct.Raycast.html) system param, you don't even need to add a plugin, raycast immediately with the ECS: +Using the [`Raycast`](https://docs.rs/bevy_mod_raycast/latest/bevy_mod_raycast/system_param/struct.Raycast.html) system param, you don't even need to add a plugin, you can directly raycast into the ECS: ```rs use bevy_mod_raycast::prelude::*; @@ -34,7 +34,7 @@ I intend to track the `main` branch of Bevy. PRs supporting this are welcome! | bevy | bevy_mod_raycast | | ---- | ---------------- | -| 0.11 | 0.9 - 0.14 | +| 0.11 | 0.9 - 0.15 | | 0.10 | 0.8 | | 0.9 | 0.7 | | 0.8 | 0.6 |