File tree Expand file tree Collapse file tree 3 files changed +17
-4
lines changed
Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 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 ] )
Original file line number Diff line number Diff line change 11[package ]
22name = " shred"
3- version = " 0.15 .0"
3+ version = " 0.16 .0"
44authors = [" torkleyy <torkleyy@gmail.com>" ]
55description = """
66Dispatches systems in parallel which need read access to some resources,
@@ -21,7 +21,7 @@ ahash = "0.8.5"
2121arrayvec = " 0.7.2"
2222atomic_refcell = " 0.1.10" # part of public API
2323rayon = { 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 }
2525smallvec = " 1.6.1"
2626tynm = " 0.1.6"
2727
@@ -30,7 +30,7 @@ members = ["shred-derive"]
3030
3131[dev-dependencies ]
3232cgmath = " 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 ]
3636default = [" parallel" , " shred-derive" ]
Original file line number Diff line number Diff line change 11[package ]
22name = " shred-derive"
3- version = " 0.6.3 "
3+ version = " 0.7.0 "
44authors = [" torkleyy" ]
55description = " Custom derive for shred"
66documentation = " https://docs.rs/shred_derive"
You can’t perform that action at this time.
0 commit comments