Skip to content

Commit

Permalink
Prepare 13.8.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
HexDecimal committed Sep 23, 2022
1 parent 7e64ae4 commit d2f3c5b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 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]

## [13.8.1] - 2022-09-23
### Fixed
- `EventDispatch` was missing new event names.

Expand Down
12 changes: 6 additions & 6 deletions tcod/event.py
Expand Up @@ -1452,32 +1452,32 @@ def ev_joydeviceremoved(self, event: tcod.event.JoystickDevice) -> Optional[T]:

def ev_controlleraxismotion(self, event: tcod.event.ControllerAxis) -> Optional[T]:
"""
.. versionadded:: Unreleased
.. versionadded:: 13.8
"""

def ev_controllerbuttondown(self, event: tcod.event.ControllerButton) -> Optional[T]:
"""
.. versionadded:: Unreleased
.. versionadded:: 13.8
"""

def ev_controllerbuttonup(self, event: tcod.event.ControllerButton) -> Optional[T]:
"""
.. versionadded:: Unreleased
.. versionadded:: 13.8
"""

def ev_controllerdeviceadded(self, event: tcod.event.ControllerDevice) -> Optional[T]:
"""
.. versionadded:: Unreleased
.. versionadded:: 13.8
"""

def ev_controllerdeviceremoved(self, event: ControllerDevice) -> Optional[T]:
"""
.. versionadded:: Unreleased
.. versionadded:: 13.8
"""

def ev_controllerdeviceremapped(self, event: ControllerDevice) -> Optional[T]:
"""
.. versionadded:: Unreleased
.. versionadded:: 13.8
"""

def ev_(self, event: Any) -> Optional[T]:
Expand Down

0 comments on commit d2f3c5b

Please sign in to comment.