Skip to content

Commit

Permalink
Release 0.8.2 (#78)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael <mossmichaelb@gmail.com>
  • Loading branch information
Ukendio and memorycode authored Jun 25, 2024
1 parent fcdb0b0 commit ae2a225
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ The format is based on [Keep a Changelog][kac], and this project adheres to

## [Unreleased]

## [0.8.2] - 2024-06-25

### Fixed
- Calling `:view()` on an empty query will no longer error.
- Fixed `:snapshot()` on an empty query returning nil instead of an empty array.
- Fixed an error that would happen when calling an empty Query.

### Changed
- Optimized `Views` performance.
- No longer allocates a table for each entity in the view, making it much cheaper for queries that match against many entities.
- Converted the lua files to luau files.
- Reverted the changes to the format of the debugger table.

## [0.8.1] - 2024-04-23

### Fixed
- `QueryResult:without` now correctly matches against entity archetype after cache has been invalidated from transitioning archetype.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"
Matter = "matter-ecs/matter@0.8.2"
```

## Migration
Expand Down
2 changes: 1 addition & 1 deletion docs/Guides/Migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"
matter = "matter-ecs/matter@0.8.2"
```
2 changes: 1 addition & 1 deletion docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ wally = "UpliftGames/wally@x.x.x"

```toml title="wally.toml"
[dependencies]
matter = "matter-ecs/matter@0.8.1"
matter = "matter-ecs/matter@0.8.2"
```

6. Run `wally install`.
Expand Down
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "matter-ecs/matter"
description = "A modern ECS library for Roblox"
version = "0.8.1"
version = "0.8.2"
license = "MIT"
authors = [
"Eryn L. K.",
Expand Down

0 comments on commit ae2a225

Please sign in to comment.