Skip to content

Commit 34e7c3a

Browse files
committed
Prepare 21.1.0 release.
1 parent 0188350 commit 34e7c3a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](https://semver.org/) since version
66

77
## [Unreleased]
88

9+
## [21.1.0] - 2026-04-04
10+
911
### Added
1012

1113
- `MouseButtonEvent.integer_position` property.

tcod/event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ class MouseButtonEvent(Event):
656656
def integer_position(self) -> Point[int]:
657657
"""Integer coordinates of this event.
658658
659-
.. versionadded:: Unreleased
659+
.. versionadded:: 21.1
660660
"""
661661
x, y = self.position
662662
return Point(floor(x), floor(y))

0 commit comments

Comments
 (0)