diff --git a/CHANGELOG.md b/CHANGELOG.md index 056dcee..ae88b71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## Unreleased +## 0.16.1 (2024-05-15) + +* Replace `ptr::invalid_mut` usage with `ptr::without_provenance_mut` so the `nightly` feature can compile on the latest nightly toolchain. ([#236]) +* Updated `ahash` to a version that no longer has licencing issues with the `zerocopy` dependency. ([#237]) +* Update `tynm` to resolve future incompatibility warning from the `nom` dependency. ([#237]) + +[#236]: https://github.com/amethyst/shred/pull/236 +[#237]: https://github.com/amethyst/shred/pull/237 + ## 0.16.0 / 0.7.0 shred-derive (2024-01-11) * Updated `ahash` from `0.7.6` to `0.8.5`. ([#231]) diff --git a/Cargo.toml b/Cargo.toml index 14dedd4..99b4405 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shred" -version = "0.16.0" +version = "0.16.1" authors = ["torkleyy "] description = """ Dispatches systems in parallel which need read access to some resources, @@ -12,7 +12,7 @@ repository = "https://github.com/amethyst/shred" keywords = ["parallel", "systems", "resources", "ecs"] categories = ["concurrency"] license = "MIT OR Apache-2.0" -exclude = ["bors.toml", ".travis.yml"] +exclude = ["bors.toml"] edition = "2021" rust-version = "1.65.0"