Skip to content

Commit

Permalink
Merge #206
Browse files Browse the repository at this point in the history
206: Update crate versions to `0.11.0` and `0.6.3`. r=azriel91 a=azriel91

Release changes for `0.11.0`.

Co-authored-by: Azriel Hoh <[email protected]>
  • Loading branch information
bors[bot] and azriel91 authored Dec 21, 2020
2 parents 09e47bc + c5c1565 commit abbce76
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog

* Batch dispatching ergonomics (getting rid of unsafe on the user side)
([#197]).
## 0.11.0 (2020-12-21)

* Batch dispatching ergonomics -- remove `unsafe` on the user side. ([#197], [#198]).
* Bumped dependency versions. ([#203], [#204])

[#197]: https://github.com/amethyst/shred/issues/197
[#198]: https://github.com/amethyst/shred/pull/198
[#203]: https://github.com/amethyst/shred/issues/203
[#204]: https://github.com/amethyst/shred/pull/204

## 0.10.2 (2020-02-13)

Expand All @@ -19,7 +26,7 @@
* Implement `Resource` for `!Send + !Sync` types when `"parallel"` feature is disabled. ([#186])

[#186]: https://github.com/amethyst/shred/pull/186
[#187]: https://github.com/amethyst/shred/pulls/187
[#187]: https://github.com/amethyst/shred/pull/187

## 0.10.0 (2019-12-31)

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.10.3"
version = "0.11.0"
authors = ["torkleyy <[email protected]>"]
description = """
Dispatches systems in parallel which need read access to some resources,
Expand All @@ -23,7 +23,7 @@ arrayvec = "0.5.2"
hashbrown = "0.9.1"
mopa = "0.2.2"
rayon = { version = "1.5.0", optional = true }
shred-derive = { path = "shred-derive", version = "0.6.0", optional = true }
shred-derive = { path = "shred-derive", version = "0.6.3", optional = true }
smallvec = "1.5.1"
tynm = "0.1.6"

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

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

[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.2"
version = "0.6.3"
authors = ["torkleyy"]
description = "Custom derive for shred"
documentation = "https://docs.rs/shred_derive"
Expand Down

0 comments on commit abbce76

Please sign in to comment.