From da321dea27f0f29318bc3984eddfee06a98d9d04 Mon Sep 17 00:00:00 2001 From: Sergeileduc Date: Sat, 29 Apr 2023 12:37:02 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.4=20=E2=86=92=200.6.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.md | 13 +++++++++++++ discord/ext/test/__init__.py | 2 +- docs/conf.py | 2 +- setup.cfg | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index a0dbbbc..b7e417a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,18 @@ # History +## 0.6.5 + +This release allows testing with Voice Channels. + +New : + +- `FakeVoiceChannel` and `FakeVoiceClient` classes implemetation +- New tests + +Changes : + +- `create_channel` method can create voice channel + ## 0.6.4 - Fix: edit message doesn't update message queue diff --git a/discord/ext/test/__init__.py b/discord/ext/test/__init__.py index ffe9c18..41fbed0 100644 --- a/discord/ext/test/__init__.py +++ b/discord/ext/test/__init__.py @@ -3,7 +3,7 @@ __author__ = "Rune Tynan" __license__ = "MIT" __copyright__ = "Copyright 2018-2019 CraftSpider" -__version__ = "0.6.4" +__version__ = "0.6.5" from . import backend as backend diff --git a/docs/conf.py b/docs/conf.py index d05bf06..b870a77 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'CraftSpider' # The full version, including alpha/beta/rc tags -release = '0.6.4' +release = '0.6.5' # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index b98aabe..5d4f653 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.4 +current_version = 0.6.5 commit = True tag = True