Skip to content

Commit 934d2dd

Browse files
committed
Prepare 13.6.0 release.
1 parent efa027b commit 934d2dd

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Changes relevant to the users of python-tcod are documented here.
44
This project adheres to [Semantic Versioning](https://semver.org/) since version `2.0.0`.
55

66
## [Unreleased]
7+
8+
## [13.6.0] - 2022-02-19
79
### Added
810
- `BasicMixer` and `Channel` classes added to `tcod.sdl.audio`. These handle simple audio mixing.
911
- `AudioDevice.convert` added to handle simple conversions to the active devices format.

tcod/sdl/audio.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def convert_audio(
6969
out_format: The output format of the converted array.
7070
out_channels: The number of audio channels of the output array.
7171
72-
.. versionadded:: unreleased
72+
.. versionadded:: 13.6
7373
7474
.. seealso::
7575
:any:`AudioDevice.convert`
@@ -201,7 +201,7 @@ def convert(self, sound: ArrayLike, rate: Optional[int] = None) -> NDArray[Any]:
201201
rate: The samplerate of the input array.
202202
If None is given then it's assumed to be the same as the device.
203203
204-
.. versionadded:: unreleased
204+
.. versionadded:: 13.6
205205
206206
.. seealso::
207207
:any:`convert_audio`
@@ -279,7 +279,7 @@ def __call__(self, channel: Channel) -> None:
279279
class Channel:
280280
"""An audio channel for :any:`BasicMixer`. Use :any:`BasicMixer.get_channel` to initialize this object.
281281
282-
.. versionadded:: unreleased
282+
.. versionadded:: 13.6
283283
"""
284284

285285
mixer: BasicMixer
@@ -374,7 +374,7 @@ class BasicMixer(threading.Thread):
374374
while channel.busy:
375375
time.sleep(0.001)
376376
377-
.. versionadded:: unreleased
377+
.. versionadded:: 13.6
378378
"""
379379

380380
def __init__(self, device: AudioDevice):

0 commit comments

Comments
 (0)