Skip to content

Commit

Permalink
v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aevyrie committed Oct 30, 2023
1 parent 952d3ec commit 93b1852
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.5.1

- Changed: reduced overhead of callback `run` function
- Fixed: Does not compile if bevy_reflect's "documentation" feature is enabled after updating to
0.5. This fixed by removing the dependency of the derive crate on the core crate.

# 0.5.0

- Removed: public dead code trait CallbackSystemTrait has been removed.
Expand All @@ -16,5 +22,6 @@
# 0.3.0

- Changed: relaxed bounds to support static `FnMut` closures for `On` methods instead of only `fn`
- Added: new `event_listener` example to guide users through how to use the supplied event listener methods.
- Added: new `event_listener` example to guide users through how to use the supplied event listener
methods.
- Fixed: prelude now exports `ListenerInput`
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resolver = "2"

[package]
name = "bevy_eventlistener"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "Event listeners and callbacks for bevy"
license = "MIT OR Apache-2.0"
Expand All @@ -15,8 +15,8 @@ keywords = ["gamedev", "bevy", "eventlistener", "callbacks"]
categories = ["game-engines", "rendering"]

[dependencies]
bevy_eventlistener_core = { path = "crates/bevy_eventlistener_core", version = "0.5.0" }
bevy_eventlistener_derive = { path = "crates/bevy_eventlistener_derive", version = "0.5.0" }
bevy_eventlistener_core = { path = "crates/bevy_eventlistener_core", version = "0.5.1" }
bevy_eventlistener_derive = { path = "crates/bevy_eventlistener_derive", version = "0.5.1" }

[dev-dependencies]
bevy = { version = "0.11", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_eventlistener_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_eventlistener_core"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "Event listeners and callbacks for bevy"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_eventlistener_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_eventlistener_derive"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "Event listeners and callbacks for bevy"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 93b1852

Please sign in to comment.