diff --git a/.gitignore b/.gitignore index 5b70a89..36d6b5a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /target /Cargo.lock .vscode +.idea \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 54bf5b6..aaa750c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_turborand" -version = "0.7.0" +version = "0.8.0" edition = "2021" authors = ["Gonçalo Rica Pais da Silva "] description = "A plugin to enable ECS optimised random number generation for the Bevy game engine." @@ -13,7 +13,7 @@ resolver = "2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bevy = { version = "0.12", default-features = false } +bevy = { version = "0.13", default-features = false } serde = { version = "1.0", features = ["derive"], optional = true } turborand = { version = "0.10", default-features = false, features=["std", "fmt"] } diff --git a/README.md b/README.md index 19dfa06..e01be8b 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,7 @@ To see an example of this, view the [project's tests](tests/determinism.rs) to s | `bevy_turborand` | `bevy` | |------------------|--------| +| v0.8 | v0.13 | | v0.7 | v0.12 | | v0.6 | v0.11 | | v0.5 | v0.10 |