Skip to content

Commit dfda554

Browse files
committed
reflect changes in changelog
1 parent 0f8d494 commit dfda554

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

docs/changelog.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Changelog
55
=========
66

7+
- :feature:`205` Add :obj:`pydis_core.utils.error_handling.commands.abc.AbstractCommandErrorHandler` and :obj:`pydis_core.utils.error_handling.commands.manager.CommandErrorManager` to implement and register command error handlers independantly.
78
- :breaking:`208` Split ``fakeredis`` optional dependency from the ``async-rediscache`` extra. You can now install with ``[fakeredis]`` to just install fakeredis (with lua support), ``[async-rediscache]`` to install just ``async-rediscache``, or use either ``[all]`` or ``[async-rediscache,fakeredis]`` to install both. This allows users who do no rely on fakeredis to install in 3.12 environments.
89
- :support:`208` Add support for Python 3.12. Be aware, at time of writing, our usage of fakeredis does not currently support 3.12. This is due to :literal-url:`this lupa issue<https://github.com/scoder/lupa/issues/245>`. Lupa is required by async-rediscache for lua script support within fakeredis. As such, fakeredis can not be installed in a Python 3.12 environment.
910
- :breaking:`208` Drop support for Python 3.10

pydis_core/utils/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
"""Useful utilities and tools for Discord bot development."""
22

3+
import pydis_core.utils.error_handling.commands as command_error_handling_module
4+
import pydis_core.utils.error_handling.commands.abc as error_handling_abstractions
5+
import pydis_core.utils.error_handling.commands.manager as command_error_manager
36
from pydis_core.utils import (
47
_monkey_patches,
58
caching,
@@ -44,6 +47,9 @@ def apply_monkey_patches() -> None:
4447
channel,
4548
checks,
4649
commands,
50+
command_error_handling_module,
51+
error_handling_abstractions,
52+
command_error_manager,
4753
cooldown,
4854
error_handling,
4955
function,

0 commit comments

Comments
 (0)