Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.16.1 and update changelog #238

Merged
merged 2 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shred"
version = "0.16.0"
version = "0.16.1"
authors = ["torkleyy <[email protected]>"]
description = """
Dispatches systems in parallel which need read access to some resources,
Expand All @@ -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"

Expand Down
Loading