diff --git a/CHANGELOG.md b/CHANGELOG.md index f587bd89..73adf037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Unreleased +# 0.10.5 ### Added - `World::query_many_mut` to conveniently query a few entities concurrently @@ -7,10 +7,12 @@ match a query - `World::{view, view_mut}` convenience short-hand for constructing a view directly from a `World` +- `ChangeTracker` helper to detect changes to components using `PartialEq` ### Changed - Renamed `{View, PreparedView}::get_mut_n` to `get_many_mut` for consistency with the proposed std slice method +- Order `Entity` values by ID first, then generation # 0.10.4 diff --git a/Cargo.toml b/Cargo.toml index 1660d817..7ccd1723 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hecs" -version = "0.10.4" +version = "0.10.5" description = "A fast, minimal, and ergonomic entity-component-system library" authors = ["Benjamin Saunders "] edition = "2021"