Skip to content

Commit

Permalink
Prepare 15.0.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
HexDecimal committed Mar 31, 2023
1 parent 2e44730 commit b81395a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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]

## [15.0.1] - 2023-03-30
### Added
- Added support for `tcod.sdl` namespace packages.

Expand Down
2 changes: 1 addition & 1 deletion tcod/sdl/render.py
Expand Up @@ -507,7 +507,7 @@ def read_pixels(
Returns:
The output uint8 array of shape: ``(height, width, channels)`` with the fetched pixels.
.. versionadded:: Unreleased
.. versionadded:: 15.0
"""
FORMATS: Final = {"RGB": lib.SDL_PIXELFORMAT_RGB24, "RGBA": lib.SDL_PIXELFORMAT_RGBA32}
sdl_format = FORMATS.get(format) if isinstance(format, str) else format
Expand Down

0 comments on commit b81395a

Please sign in to comment.