Skip to content

Commit

Permalink
Release v0.7.1 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
LastTalon authored Feb 1, 2024
1 parent 22dfc47 commit d01b203
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,28 @@ The format is based on [Keep a Changelog][kac], and this project adheres to

## [Unreleased]

## [0.7.1] - 2024-01-31

### Changed

- Improved overall usability of the world inspect widget in the debugger.
- The widget now displays a more table-like view of the world's entities and
their components.
- Improved query unpacking performance when querying 5 components or fewer.
- This covers the majority of use cases.
- Querying more than 5 components remains unchanged.
- The debugger UI is more compact and includes minor layout improvements.
- The debugger panel now better displays system order and performance.

### Fixed

- Slider now properly supports passing only a number rather than a table.
- TestEZ is now a dev dependency rather than a regular dependency.
- Fixed regressions with system scheduling.
- Scheduling systems with dependencies on other systems no longer incorrectly
detects cycles.
- Scheduling no longer occasionally produces non-deterministic ordering.

## [0.7.0] - 2023-12-19

### Added
Expand Down Expand Up @@ -174,7 +196,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.7.0...HEAD
[unreleased]: https://github.com/matter-ecs/matter/compare/v0.7.1...HEAD
[0.7.1]: https://github.com/matter-ecs/matter/releases/tag/v0.7.1
[0.7.0]: https://github.com/matter-ecs/matter/releases/tag/v0.7.0
[0.6.2]: https://github.com/matter-ecs/matter/releases/tag/v0.6.2
[0.6.1]: https://github.com/matter-ecs/matter/releases/tag/v0.6.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Matter can be installed with [Wally] by including it as a dependency in your
`wally.toml` file.

```toml
Matter = "matter-ecs/[email protected].0"
Matter = "matter-ecs/[email protected].1"
```

## Migration
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.7.0"
version = "0.7.1"
license = "MIT"
authors = [
"Eryn L. K.",
Expand Down

0 comments on commit d01b203

Please sign in to comment.