diff options
author | 2022-04-05 16:09:43 +0100 | |
---|---|---|
committer | 2022-04-08 12:04:08 +0100 | |
commit | 5935159fed252dc17a60d53ed367b4a12e8386a4 (patch) | |
tree | 72617275475175d2aefc853d839483e8b43da426 | |
parent | Create a dummy AsyncstatsdClient before connecting to the real url (diff) |
Bump version number and log changev5.0.2
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | pyproject.toml | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b041bad6..3779ad32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 5.0.2 5th April 2022 +- Fix: Create a dummy `AsyncstatsdClient` before connecting to real url, in case a connection cannot be made on init. +- Fix: Move the creation of the `asyncio.Event`, `BotBase._guild_available` to within the setup hook, to avoid a deprecation notice. + +## 5.0.1 2nd April 2022 +- Fix: Move creation of BotBase's `aiohttp.AsyncResolver` to the async setup hook, to avoid deprecation notice + ## 5.0.0 2nd April 2022 - Breaking: Remove public extensions util - Feature: Add `BotBase`, a `discord.ext.commands.Bot` sub-class, which abstracts a lot of logic shared between our bots diff --git a/pyproject.toml b/pyproject.toml index 4561706f..76f0e667 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bot-core" -version = "5.0.1" +version = "5.0.2" description = "Bot-Core provides the core functionality and utilities for the bots of the Python Discord community." authors = ["Python Discord <[email protected]>"] license = "MIT" |