diff --git a/README.md b/README.md index ed529e3..06c86de 100644 --- a/README.md +++ b/README.md @@ -20,14 +20,14 @@ All supported PRNGs and compatible structs are provided by the `bevy_prng` crate #### `bevy_rand` feature activation ```toml rand_core = "0.6" -bevy_rand = { version = "0.5", features = ["rand_chacha", "wyrand"] } +bevy_rand = { version = "0.7", features = ["rand_chacha", "wyrand"] } ``` #### `bevy_prng` feature activation ```toml rand_core = "0.6" -bevy_rand = "0.5" -bevy_prng = { version = "0.5", features = ["rand_chacha", "wyrand"] } +bevy_rand = "0.7" +bevy_prng = { version = "0.7", features = ["rand_chacha", "wyrand"] } ``` The summary of what RNG algorithm to choose is: pick `wyrand` for almost all cases as it is faster and more portable than other algorithms. For cases where you need the extra assurance of entropy quality (for security, etc), then use `rand_chacha`. For more information, [go here](https://docs.rs/bevy_rand/latest/bevy_rand/tutorial/ch01_choosing_prng/index.html). @@ -126,18 +126,18 @@ fn setup_npc_from_source( `bevy_rand` uses the same MSRV as `bevy`. -| `bevy` | `bevy_rand` | -| ------ | ----------- | -| v0.13 | v0.5, v0.6 | -| v0.12 | v0.4 | -| v0.11 | v0.2, v0.3 | -| v0.10 | v0.1 | +| `bevy` | `bevy_rand` | +| ------ | ------------ | +| v0.13 | v0.5 - v0.7 | +| v0.12 | v0.4 | +| v0.11 | v0.2 - v0.3 | +| v0.10 | v0.1 | The versions of `rand_core`/`rand` that `bevy_rand` is compatible with is as follows: | `bevy_rand` | `rand_core` | `rand` | | ------------ | ----------- | ------ | -| v0.1 -> v0.6 | v0.6 | v0.8 | +| v0.1 -> v0.7 | v0.6 | v0.8 | ## Migrations