diff --git a/CHANGELOG.md b/CHANGELOG.md index 57c66aea6..c600d37d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ -# [Unreleased] - +# 0.14.2 + +* Add `Join`-able entries API to `Storage` ([#518]) +* Several docs / meta improvements ([#526], [#527], [#528], [#530], [#531]) +* Fix bug when re-killing Entity after atomic killing followed by alloc ([#533]) +* Add `Storage::count` and `Storage::is_empty` ([#534]) + +[#518]: https://github.com/slide-rs/specs/pull/518 +[#526]: https://github.com/slide-rs/specs/pull/526 +[#527]: https://github.com/slide-rs/specs/pull/527 +[#528]: https://github.com/slide-rs/specs/pull/528 +[#530]: https://github.com/slide-rs/specs/pull/530 +[#531]: https://github.com/slide-rs/specs/pull/531 +[#533]: https://github.com/slide-rs/specs/pull/533 +[#534]: https://github.com/slide-rs/specs/pull/534 + +# 0.14.1 + +* Allow accessing the `EntitiesRes` fetched by a `Storage` ([#515]) +* Book / API doc improvements ([#496], [#507], [#511]) + +[#496]: https://github.com/slide-rs/specs/pull/496 +[#507]: https://github.com/slide-rs/specs/pull/507 +[#511]: https://github.com/slide-rs/specs/pull/511 +[#515]: https://github.com/slide-rs/specs/pull/515 # 0.14.0 diff --git a/Cargo.toml b/Cargo.toml index f3316bc9f..f642db284 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "specs" -version = "0.14.1" +version = "0.14.2" description = """ Specs is an Entity-Component System library written in Rust. """ @@ -55,7 +55,7 @@ criterion = "0.2" ron = "0.4" rand = "0.5.5" serde_json = "1.0" -specs-derive = { path = "specs-derive", version = "0.3.0" } +specs-derive = { path = "specs-derive", version = "0.4.0" } [[example]] name = "async" diff --git a/specs-derive/Cargo.toml b/specs-derive/Cargo.toml index 02997bb11..d4b78a90a 100644 --- a/specs-derive/Cargo.toml +++ b/specs-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "specs-derive" -version = "0.3.0" +version = "0.4.0" authors = ["Eyal Kalderon "] description = "Custom derive macro for Specs components" documentation = "https://docs.rs/specs-derive"