Skip to content

Commit d4c78c2

Browse files
authored
Merge pull request #235 from Imberflur/release-0.16
Bump version to 0.16, bump shred-derive version to 0.7, and update changelog
2 parents 5d52c6f + 87989b7 commit d4c78c2

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## Unreleased
44

5+
## 0.16.0 / 0.7.0 shred-derive (2024-01-11)
6+
7+
* Updated `ahash` from `0.7.6` to `0.8.5`. ([#231])
8+
* `shred-derive`: prepend `shred::` to type paths so that `World`, `SystemData`, and `ResourceId`
9+
don't need to be in scope when using `SystemData` derive. `shred` does need to be in scope now
10+
though, so if you are using the derive through `specs`, a `use specs::shred;` is neccessary. ([#232])
11+
* Add `SendDispatcher` for cases where thread local systems are not used and you need a `Send`able
12+
dispatcher. ([#234])
13+
14+
[#231]: https://github.com/amethyst/shred/pull/231
15+
[#232]: https://github.com/amethyst/shred/pull/232
16+
[#234]: https://github.com/amethyst/shred/pull/234
17+
518
## 0.15.0 (2023-09-16)
619

720
* Have `DispatcherBuilder::add_batch()` use the correct access. ([#221], [#222])

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shred"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
authors = ["torkleyy <torkleyy@gmail.com>"]
55
description = """
66
Dispatches systems in parallel which need read access to some resources,
@@ -21,7 +21,7 @@ ahash = "0.8.5"
2121
arrayvec = "0.7.2"
2222
atomic_refcell = "0.1.10" # part of public API
2323
rayon = { version = "1.5.0", optional = true }
24-
shred-derive = { path = "shred-derive", version = "0.6.3", optional = true }
24+
shred-derive = { path = "shred-derive", version = "0.7.0", optional = true }
2525
smallvec = "1.6.1"
2626
tynm = "0.1.6"
2727

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

3131
[dev-dependencies]
3232
cgmath = "0.18.0"
33-
shred-derive = { path = "shred-derive", version = "0.6.3" }
33+
shred-derive = { path = "shred-derive", version = "0.7.0" }
3434

3535
[features]
3636
default = ["parallel", "shred-derive"]

shred-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shred-derive"
3-
version = "0.6.3"
3+
version = "0.7.0"
44
authors = ["torkleyy"]
55
description = "Custom derive for shred"
66
documentation = "https://docs.rs/shred_derive"

0 commit comments

Comments
 (0)