Skip to content

Commit 08b2b21

Browse files
committed
Prepare 5.3.0 release
1 parent 3339ef3 commit 08b2b21

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
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.3.0] - 2025-03-08
11+
1012
### Added
1113

1214
- New query `.any_of` method. This was possible before but it is easier with this method.

tcod/ecs/entity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class Entity:
7777
def world(self) -> Registry:
7878
"""Deprecated alias for registry.
7979
80-
.. deprecated:: Unreleased
80+
.. deprecated:: 5.1
8181
Use :any:`registry` instead.
8282
"""
8383
if __debug__:

tcod/ecs/query.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ class BoundQuery:
336336
def world(self) -> Registry:
337337
"""Deprecated alias for registry.
338338
339-
.. deprecated:: Unreleased
339+
.. deprecated:: 5.1
340340
Use :any:`registry` instead.
341341
"""
342342
if __debug__:
@@ -415,7 +415,7 @@ def any_of(
415415
) -> Self:
416416
"""Filter entities based on having at least one of the provided elements.
417417
418-
.. versionadded:: Unreleased
418+
.. versionadded:: 5.3
419419
"""
420420
_check_suspicious_tags(tags, stacklevel=2)
421421
return self.__class__(

0 commit comments

Comments
 (0)