Skip to content

Commit

Permalink
Update to Bevy 0.14 (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
msklosak authored Sep 3, 2024
1 parent 4232b6b commit 4c54932
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_console"
version = "0.11.1"
version = "0.12.0"
edition = "2021"
authors = ["RichoDemus <git@richodemus.com>"]
homepage = "https://github.com/RichoDemus/bevy-console"
Expand All @@ -10,14 +10,14 @@ license = "MIT"
readme = "README.md"

[dependencies]
bevy = { version = "0.13", default-features = false }
bevy = { version = "0.14", default-features = false }
clap = { version = "4.5", features = ["derive"] }
bevy_console_derive = { path = "./bevy_console_derive", version = "0.5.0" }
bevy_egui = "0.25"
bevy_egui = "0.28.0"
shlex = "1.3"

[dev-dependencies]
bevy = "0.13"
bevy = "0.14"

[workspace]
members = ["bevy_console_derive"]
2 changes: 1 addition & 1 deletion src/commands/exit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub(crate) fn exit_command(
mut exit_writer: EventWriter<AppExit>,
) {
if let Some(Ok(_)) = exit.take() {
exit_writer.send(AppExit);
exit_writer.send(AppExit::Success);
exit.ok();
}
}

0 comments on commit 4c54932

Please sign in to comment.