diff --git a/changelog/1267.bugfix.rst b/changelog/1267.bugfix.rst deleted file mode 100644 index 1df3410644..0000000000 --- a/changelog/1267.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Prevent :class:`py:DeprecationWarning` related to :attr:`Message.interaction` field on shard reconnect. diff --git a/disnake/__init__.py b/disnake/__init__.py index f05ead78b8..dd2e756143 100644 --- a/disnake/__init__.py +++ b/disnake/__init__.py @@ -14,7 +14,7 @@ __author__ = "Rapptz, EQUENOS" __license__ = "MIT" __copyright__ = "Copyright 2015-present Rapptz, 2021-present EQUENOS" -__version__ = "2.10.0" +__version__ = "2.10.1" __path__ = __import__("pkgutil").extend_path(__path__, __name__) @@ -87,7 +87,7 @@ class VersionInfo(NamedTuple): # fmt: off -version_info: VersionInfo = VersionInfo(major=2, minor=10, micro=0, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=2, minor=10, micro=1, releaselevel="final", serial=0) # fmt: on logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/docs/whats_new.rst b/docs/whats_new.rst index 974a5f71ba..cdacf0f5c3 100644 --- a/docs/whats_new.rst +++ b/docs/whats_new.rst @@ -17,6 +17,16 @@ in specific versions. Please see :ref:`version_guarantees` for more information. .. towncrier release notes start +.. _vp2p10p1: + +v2.10.1 +------- + +Bug Fixes +~~~~~~~~~ +- Prevent :class:`py:DeprecationWarning` related to :attr:`Message.interaction` field on shard reconnect. (:issue:`1267`) + + .. _vp2p10p0: v2.10.0