From c5ddf3405b098a3bce0ace4ec291ef540ca7dc7a Mon Sep 17 00:00:00 2001 From: Lucas Gangstad Date: Mon, 9 Dec 2024 16:31:28 -0600 Subject: [PATCH 1/2] Bump version --- CHANGELOG.md | 5 ++++- README.md | 2 +- docs/Guides/Migration.md | 2 +- docs/Installation.md | 2 +- wally.toml | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68ecb3c..a8eb5eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog][kac], and this project adheres to ## [Unreleased] +## [0.8.5] - 2024-12-09 + ### Added - Added a button to the Debugger's system list to sort by run time. @@ -324,7 +326,8 @@ The format is based on [Keep a Changelog][kac], and this project adheres to - Initial release -[unreleased]: https://github.com/matter-ecs/matter/compare/v0.8.4...HEAD +[unreleased]: https://github.com/matter-ecs/matter/compare/v0.8.5...HEAD +[0.8.5]: https://github.com/matter-ecs/matter/releases/tag/v0.8.5 [0.8.4]: https://github.com/matter-ecs/matter/releases/tag/v0.8.4 [0.8.3]: https://github.com/matter-ecs/matter/releases/tag/v0.8.3 [0.8.2]: https://github.com/matter-ecs/matter/releases/tag/v0.8.2 diff --git a/README.md b/README.md index a4332b2..3ab99a9 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Matter can be installed with [Wally] by including it as a dependency in your `wally.toml` file. ```toml -Matter = "matter-ecs/matter@0.8.4" +Matter = "matter-ecs/matter@0.8.5" ``` ## Migration diff --git a/docs/Guides/Migration.md b/docs/Guides/Migration.md index f8205d8..b08cce6 100644 --- a/docs/Guides/Migration.md +++ b/docs/Guides/Migration.md @@ -4,5 +4,5 @@ Migrating from `evaera/matter` to `matter-ecs/matter` is easy! The only thing yo ```toml title="wally.toml" [dependencies] - matter = "matter-ecs/matter@0.8.4" + matter = "matter-ecs/matter@0.8.5" ``` diff --git a/docs/Installation.md b/docs/Installation.md index 02eb87c..115b395 100644 --- a/docs/Installation.md +++ b/docs/Installation.md @@ -25,7 +25,7 @@ wally = "UpliftGames/wally@x.x.x" ```toml title="wally.toml" [dependencies] -matter = "matter-ecs/matter@0.8.4" +matter = "matter-ecs/matter@0.8.5" ``` 6. Run `wally install`. diff --git a/wally.toml b/wally.toml index ae15048..f04b66a 100644 --- a/wally.toml +++ b/wally.toml @@ -1,7 +1,7 @@ [package] name = "matter-ecs/matter" description = "A modern ECS library for Roblox" -version = "0.8.4" +version = "0.8.5" license = "MIT" authors = [ "Eryn L. K.", From 3e555df95b62fd6447ea507ea5d8d6e61a5ee307 Mon Sep 17 00:00:00 2001 From: Lucas Gangstad Date: Mon, 9 Dec 2024 16:50:45 -0600 Subject: [PATCH 2/2] Add fix to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8eb5eb..60eb77b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ The format is based on [Keep a Changelog][kac], and this project adheres to ### Fixed - The debugger now gracefully handles cyclic tables. +- The query cache no longer allows for a case where archetypes could be skipped. ## [0.8.4] - 2024-08-15