Skip to content

Commit

Permalink
Bump version to 0.16, bump shred-derive version to 0.7, and update ch…
Browse files Browse the repository at this point in the history
…angelog
  • Loading branch information
Imberflur committed Jan 12, 2024
1 parent 5d52c6f commit 87989b7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
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 <[email protected]>"]
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

0 comments on commit 87989b7

Please sign in to comment.