Skip to content

Commit

Permalink
chore: Update migration notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluefinger committed Jul 23, 2024
1 parent a58423d commit 6836efe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MIGRATIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@ This **will** change the type path and the serialization format for the PRNGs, b
## Migrating from v0.5 to v0.6

As the `wyrand` dependency has been updated and contains a breaking output change, users of `bevy_rand` making use of the `wyrand` feature will need to update their code in cases where deterministic output from the old version is expected. The new `WyRand` output is considered to provide better entropy than the old version, so it is recommended to adopt the new version. In reality, this is likely to affect tests and serialised output rather than game code.

## Migrating from v0.7 to v0.8

`GlobalRngSeed` has been changed to make use of `SeedSource` trait, for things like instantiation: `new` is now `from_seed`. `get_seed` is now `clone_seed`. Most of these changes can be done easily by importing the `SeedSource` trait.

0 comments on commit 6836efe

Please sign in to comment.