Skip to content

Commit 3e36748

Browse files
committed
Prepare 5.2.4 release
1 parent e438d90 commit 3e36748

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [5.2.4] - 2025-03-07
11+
1012
### Fixed
1113

1214
- Clearing an entity with inherited components no longer leaves the entity with missed components.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2023-2024 Kyle Benesch
3+
Copyright (c) 2023-2025 Kyle Benesch
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The ECS Registry is used to create and store entities and their components.
4747
## Entity
4848

4949
Each Entity is identified by its unique id (`uid`) which can be any hashable object combined with the `registry` it belongs.
50-
New unique entities can be created with `Registry.new_entity` which uses a new `object()` as the `uid`, this guarantees uniqueness which is not always desireable.
50+
New unique entities can be created with `Registry.new_entity` which uses a new `object()` as the `uid`, this guarantees uniqueness which is not always desirable.
5151
An entity always knows about its assigned registry, which can be accessed with the `Entity.registry` property from any Entity instance.
5252
Registries only know about their entities once the entity is assigned a name, component, tag, or relation.
5353

0 commit comments

Comments
 (0)