Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.8.0

### Changes
- Support for Bevy 0.18!

# 0.7.0

### Changes
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ members = [
exclude = [".direnv/", ".vscode/", "Cargo.lock", "*.nix", "flake.lock", ".envrc", ".github/"]

[workspace.dependencies]
bevy_app = { version = "0.17.0", default-features = false }
bevy_ecs = { version = "0.17.0", default-features = false }
bevy_log = { version = "0.17.0", default-features = false }
bevy_state = { version = "0.17.0", default-features = false, features = ["bevy_app"] }
bevy = { version = "0.17.0", default-features = false, features = ["bevy_log", "bevy_state"] }
bevy_app = { version = "0.18.1", default-features = false }
bevy_ecs = { version = "0.18.1", default-features = false }
bevy_log = { version = "0.18.1", default-features = false }
bevy_state = { version = "0.18.1", default-features = false, features = ["bevy_app"] }
bevy = { version = "0.18.1", default-features = false, features = ["bevy_log", "bevy_state"] }
deluxe = { version = "0.5.0", path = "deluxe-vendored" }
deluxe-core = { version = "0.5.0", path = "deluxe-vendored/core" }
proc-macro2 = "1.0.93"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ A set of procedural macros for making Bevy plugins and systems more self-documen
## Version Compatibility
| bevy | bevy-butler |
|------|-------------|
|`0.18`| `0.8` |
|`0.17`| `0.7` |
|`0.16`| `0.6` |
|`0.15`| `0.5` |
Expand Down
2 changes: 1 addition & 1 deletion bevy-butler-proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy-butler-proc-macro"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
description = "Procedural macro definitions for bevy-butler"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions bevy-butler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "bevy-butler"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
categories = ["game-development", "rust-patterns"]
description = "A crate for making Bevy systems more self-documenting"
keywords = ["game", "gamedev", "bevy", "systems", "macro"]
rust-version = "1.88.0" # Follows bevy 0.17
rust-version = "1.88.0" # Follows bevy 0.18
license = "MIT OR Apache-2.0"
repository = "https://github.com/DragonFoxCollective/bevy-butler" # :)
exclude = [".direnv/", ".vscode/", "Cargo.lock", "*.nix", "flake.lock", ".envrc", ".github/"]

[dependencies]
bevy-butler-proc-macro = { path = "../bevy-butler-proc-macro", version = "0.7.0" }
bevy-butler-proc-macro = { path = "../bevy-butler-proc-macro", version = "0.8.0" }
bevy_app = { workspace = true }
bevy_ecs = { workspace = true }
bevy_log = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions bevy-butler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pub use bevy_butler_proc_macro::add_system;
/// # content: String,
/// # }
/// #[add_observer(plugin = MyPlugin)]
/// fn receive_message(message: Trigger<Message>) {
/// fn receive_message(message: On<Message>) {
/// info!("Message received: {}", message.content);
/// }
/// ```
Expand All @@ -181,7 +181,7 @@ pub use bevy_butler_proc_macro::add_system;
/// # content: String,
/// # }
/// #
/// # pub(super) fn receive_message(message: Trigger<Message>) {
/// # pub(super) fn receive_message(message: On<Message>) {
/// # info!("Message received: {}", message.content);
/// # }
/// # }
Expand Down