Skip to content

Commit

Permalink
Prepare 16.1.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
HexDecimal committed Jun 23, 2023
1 parent 16a8f8b commit 7ffb785
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,8 @@ Changes relevant to the users of python-tcod are documented here.
This project adheres to [Semantic Versioning](https://semver.org/) since version `2.0.0`.

## [Unreleased]

## [16.1.0] - 2023-06-23
### Added
- Added the enums `tcod.event.MouseButton` and `tcod.event.MouseButtonMask`.

Expand Down
4 changes: 2 additions & 2 deletions tcod/event.py
Expand Up @@ -243,7 +243,7 @@ class Modifier(enum.IntFlag):
class MouseButton(enum.IntEnum):
"""An enum for mouse buttons.
.. versionadded:: Unreleased
.. versionadded:: 16.1
"""

LEFT = 1
Expand All @@ -264,7 +264,7 @@ def __repr__(self) -> str:
class MouseButtonMask(enum.IntFlag):
"""A mask enum for held mouse buttons.
.. versionadded:: Unreleased
.. versionadded:: 16.1
"""

LEFT = 0x1
Expand Down

0 comments on commit 7ffb785

Please sign in to comment.