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, bump shred-derive version to 0.7, and update changelog #235

Merged
merged 1 commit into from
Jan 12, 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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

## Unreleased

## 0.16.0 / 0.7.0 shred-derive (2024-01-11)

* Updated `ahash` from `0.7.6` to `0.8.5`. ([#231])
* `shred-derive`: prepend `shred::` to type paths so that `World`, `SystemData`, and `ResourceId`
don't need to be in scope when using `SystemData` derive. `shred` does need to be in scope now
though, so if you are using the derive through `specs`, a `use specs::shred;` is neccessary. ([#232])
* Add `SendDispatcher` for cases where thread local systems are not used and you need a `Send`able
dispatcher. ([#234])

[#231]: https://github.com/amethyst/shred/pull/231
[#232]: https://github.com/amethyst/shred/pull/232
[#234]: https://github.com/amethyst/shred/pull/234

## 0.15.0 (2023-09-16)

* Have `DispatcherBuilder::add_batch()` use the correct access. ([#221], [#222])
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shred"
version = "0.15.0"
version = "0.16.0"
authors = ["torkleyy <torkleyy@gmail.com>"]
description = """
Dispatches systems in parallel which need read access to some resources,
Expand All @@ -21,7 +21,7 @@ ahash = "0.8.5"
arrayvec = "0.7.2"
atomic_refcell = "0.1.10" # part of public API
rayon = { version = "1.5.0", optional = true }
shred-derive = { path = "shred-derive", version = "0.6.3", optional = true }
shred-derive = { path = "shred-derive", version = "0.7.0", optional = true }
smallvec = "1.6.1"
tynm = "0.1.6"

Expand All @@ -30,7 +30,7 @@ members = ["shred-derive"]

[dev-dependencies]
cgmath = "0.18.0"
shred-derive = { path = "shred-derive", version = "0.6.3" }
shred-derive = { path = "shred-derive", version = "0.7.0" }

[features]
default = ["parallel", "shred-derive"]
Expand Down
2 changes: 1 addition & 1 deletion shred-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shred-derive"
version = "0.6.3"
version = "0.7.0"
authors = ["torkleyy"]
description = "Custom derive for shred"
documentation = "https://docs.rs/shred_derive"
Expand Down
Loading