Skip to content
Snippets Groups Projects
Verified Commit ba0721c7 authored by Louis's avatar Louis :fire:
Browse files

Bump bevy version support

parent 808322ec
No related branches found
No related tags found
No related merge requests found
[package] [package]
name = "micro_bevy_world_utils" name = "micro_bevy_world_utils"
version = "0.4.0" version = "0.5.0"
edition = "2021" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
description = "Handy, reusable utilities for working with direct world access in a Bevy exclusive system" 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" ...@@ -11,5 +11,5 @@ repository = "https://lab.lcr.gr/microhacks/micro-bevy-world-utils"
[dependencies] [dependencies]
bevy_ecs = "0.13" bevy_ecs = "0.14"
bevy_hierarchy = "0.13" bevy_hierarchy = "0.14"
...@@ -35,6 +35,7 @@ the given entities, the result will be `None` ...@@ -35,6 +35,7 @@ the given entities, the result will be `None`
| world_utiles ver | bevy ver | | world_utiles ver | bevy ver |
|------------------|----------| |------------------|----------|
| 0.5 | 0.14 |
| 0.4 | 0.13 | | 0.4 | 0.13 |
| 0.3 | 0.11 | | 0.3 | 0.11 |
| 0.2 | 0.10 | | 0.2 | 0.10 |
......
...@@ -226,8 +226,10 @@ pub fn get_any_left_parent_any_right_parent_entities< ...@@ -226,8 +226,10 @@ pub fn get_any_left_parent_any_right_parent_entities<
/// ## Example /// ## Example
/// ///
/// ```rust /// ```rust
/// # use bevy_ecs::event::Event;
/// # use bevy_ecs::world::World; /// # use bevy_ecs::world::World;
/// ///
/// #[derive(Event)]
/// struct MyEventType { /// struct MyEventType {
/// message: usize /// message: usize
/// } /// }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment