From 6b645b6a44a26945224a28eb46742a785a436022 Mon Sep 17 00:00:00 2001 From: andrei Date: Thu, 20 Jul 2017 16:32:26 -0700 Subject: [PATCH] Bumpb version to 0.0.11-rc.8 --- CHANGELOG.md | 27 ++++++++++++++++++++++++++- disco/__init__.py | 2 +- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fc440e..5302ca7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,26 @@ # CHANGELOG +## v0.0.11-rc.8 + +### Additions + +- Added support for capturing the raw responses returned from the API via `APIClient.capture` contextmanager +- Added various pieces of documentation + +### Fixes + +- Fixed Python 3 errors and Python 2 deprecation warnings for CommandError using `.message` attribute + +### ETC + +- Grealty improved the performance of the custom HashMap +- Moved tests around and added pytest as the testing framework of choice + + ## v0.0.11-rc.7 +### Additions + - Added support for new NSFW attribute of channels - `Channel.nsfw` - `Channel.set_nsfw` @@ -10,6 +29,12 @@ - **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. + +### Fixes + +- 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. + +### ETC + - Improved log messages within GatewayClient - Log voice endpoint within VoiceClient diff --git a/disco/__init__.py b/disco/__init__.py index 6f5f02c..988b600 100644 --- a/disco/__init__.py +++ b/disco/__init__.py @@ -1 +1 @@ -VERSION = '0.0.11-rc.7' +VERSION = '0.0.11-rc.8'