Skip to content

Commit

Permalink
Release 0.12 (and example fixes)
Browse files Browse the repository at this point in the history
  • Loading branch information
hakolao committed Apr 11, 2023
1 parent 985c5ed commit 452448c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "Apache-2.0"
name = "bevy_vulkano"
readme = "README.md"
repository = "https://github.com/hakolao/bevy_vulkano"
version = "0.11.0"
version = "0.12.0"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This library re-exports `egui_winit_vulkano`.

## Examples:
```bash
cargo run --example multi_window_gui
cargo run --example multi_window_gui --features "gui links clipboard"
cargo run --example windowless_compute
cargo run --example game_of_life
```
Expand Down
2 changes: 2 additions & 0 deletions examples/windowless_compute/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ use vulkano::{

fn main() {
App::new()
.add_plugin(bevy::log::LogPlugin::default())
.add_plugin(bevy::core::TaskPoolPlugin::default())
.add_plugin(WindowPlugin {
primary_window: None,
..default()
Expand Down
2 changes: 1 addition & 1 deletion run_all_examples.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
cargo run --example multi_window_gui
cargo run --example multi_window_gui --features "gui links clipboard"
cargo run --example windowless_compute
cargo run --example game_of_life

0 comments on commit 452448c

Please sign in to comment.