diff --git a/CHANGELOG.txt b/CHANGELOG.txt new file mode 100644 index 0000000..8fc440e --- /dev/null +++ b/CHANGELOG.txt @@ -0,0 +1,15 @@ +# CHANGELOG + +## v0.0.11-rc.7 + +- Added support for new NSFW attribute of channels + - `Channel.nsfw` + - `Channel.set_nsfw` + - `Channel.is_nsfw` behaves correctly, checking both the deprecated `nsfw-` prefix and the new attribute +- Added support for `on_complete` callback within DCADOpusEncoderPlayable +- **BREAKING** Added new custom queue types `BaseQueue`/`PlayableQueue` for use w/ `Player`. + - `queue` can be passed when creating a `Player`, should inherit from BaseQueue + - Users who previously utilized the `put` method of the old `Player.queue` must move to using `Player.queue.append`, or providing a custom queue implementation. +- Fixed bug within SimpleLimiter which would cause all events after a quiescent period to be immedietly dispatched. This would cause gateway disconnects w/ RATE_LIMITED on clients with many Guilds and member sync enabled. +- Improved log messages within GatewayClient +- Log voice endpoint within VoiceClient diff --git a/disco/__init__.py b/disco/__init__.py index 09547e5..6f5f02c 100644 --- a/disco/__init__.py +++ b/disco/__init__.py @@ -1 +1 @@ -VERSION = '0.0.11-rc.6' +VERSION = '0.0.11-rc.7'