Skip to content

Commit 3ca7fcd

Browse files
committedNov 12, 2023
Updated the version and README
1 parent 0279777 commit 3ca7fcd

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed
 

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_app_compute"
3-
version = "0.11.0"
3+
version = "0.10.5"
44
authors = ["Kjolnyr <kjolnyr@protonmail.com>"]
55
edition = "2021"
66
description = "App compute plugin for Bevy"

‎README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ use bevy_app_compute::AppComputePlugin;
8686

8787
fn main() {
8888
App::new()
89-
.add_plugin(AppComputePlugin)
90-
.add_plugin(AppComputeWorkerPlugin::<SimpleComputeWorker>::default());
89+
.add_plugins(AppComputePlugin)
90+
.add_plugins(AppComputeWorkerPlugin::<SimpleComputeWorker>::default());
9191
}
9292
```
9393

@@ -184,4 +184,5 @@ See [examples](https://github.com/kjolnyr/bevy_app_compute/tree/main/examples)
184184
|Bevy|bevy_app_compute|
185185
|---|---|
186186
|main|main|
187-
|0.10|0.10.3|
187+
|0.10|0.10.3|
188+
|0.12|0.10.5|

0 commit comments

Comments
 (0)
Please sign in to comment.