From ba0721c75793cac33b3515af3c80418f51bcddd4 Mon Sep 17 00:00:00 2001 From: Louis Capitanchik <contact@louiscap.co> Date: Tue, 9 Jul 2024 13:28:54 +0100 Subject: [PATCH] Bump bevy version support --- Cargo.toml | 6 +++--- README.md | 1 + src/lib.rs | 2 ++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 47584bb..04ec0ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "micro_bevy_world_utils" -version = "0.4.0" +version = "0.5.0" edition = "2021" license = "Apache-2.0" description = "Handy, reusable utilities for working with direct world access in a Bevy exclusive system" @@ -11,5 +11,5 @@ repository = "https://lab.lcr.gr/microhacks/micro-bevy-world-utils" [dependencies] -bevy_ecs = "0.13" -bevy_hierarchy = "0.13" +bevy_ecs = "0.14" +bevy_hierarchy = "0.14" diff --git a/README.md b/README.md index ec5b1ce..345d684 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ the given entities, the result will be `None` | world_utiles ver | bevy ver | |------------------|----------| +| 0.5 | 0.14 | | 0.4 | 0.13 | | 0.3 | 0.11 | | 0.2 | 0.10 | diff --git a/src/lib.rs b/src/lib.rs index cc11f6a..630bfa7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -226,8 +226,10 @@ pub fn get_any_left_parent_any_right_parent_entities< /// ## Example /// /// ```rust +/// # use bevy_ecs::event::Event; /// # use bevy_ecs::world::World; /// +/// #[derive(Event)] /// struct MyEventType { /// message: usize /// } -- GitLab