diff --git a/CHANGELOG.md b/CHANGELOG.md index f31f55a..571b145 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ -# UNRELEASED +# 0.7.0 - Changed: Updated to Bevy `0.13`. - Changed: ***BREAKING*** `EntityEvent`s no longer bubble by default. - If you are using `#[derive(EntityEvent)]`, you will need to add the `#[can_bubble]` attribute to enable bubbling. - If you are manually implementing the trait, you will need to override the default `can_bubble` - trait method and return true. + trait method and return `true`. - Changed: dissolved the `bevy_eventlistener_core` crate. - Changed: `commands_mut`, `target_commands_mut`, `target_component_mut`, `listener_commands_mut`, and `listener_component_mut` have been changed to provide a mutable reference to diff --git a/Cargo.toml b/Cargo.toml index cf05337..d2e4155 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ resolver = "2" [package] name = "bevy_eventlistener" -version = "0.6.2" +version = "0.7.0" edition = "2021" description = "Event listeners and callbacks for bevy" license = "MIT OR Apache-2.0" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 9e36444..f646ef0 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_eventlistener_derive" -version = "0.6.2" +version = "0.7.0" edition = "2021" description = "Event listeners and callbacks for bevy" license = "MIT OR Apache-2.0"