From 590374d88f1cc81aff4a16b74a8fcd4acd042899 Mon Sep 17 00:00:00 2001 From: Azriel Hoh Date: Sat, 16 Nov 2019 10:07:09 +1300 Subject: [PATCH 1/2] Bumped version to 0.9.4 for release. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b987a81..4a7fc7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shred" -version = "0.9.3" +version = "0.9.4" authors = ["torkleyy "] description = """ Dispatches systems in parallel which need read access to some resources, From f80f243d41fec345a2e862dc783fb685b292b1c5 Mon Sep 17 00:00:00 2001 From: Azriel Hoh Date: Sat, 16 Nov 2019 10:12:05 +1300 Subject: [PATCH 2/2] Added `CHANGELOG.md`. --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a807429 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## 0.9.4 (2019-11-16) + +### Added + +* Batch dispatching. ([#147]) + +[#147]: https://github.com/amethyst/shred/pull/147