Skip to content

Commit 0e4181a

Browse files
chore(release): v2.9.2 (#1194)
Co-authored-by: disnake-bot[bot] <139079794+disnake-bot[bot]@users.noreply.github.com>
1 parent 687afa3 commit 0e4181a

9 files changed

+24
-9
lines changed

Diff for: changelog/1133.bugfix.rst

-1
This file was deleted.

Diff for: changelog/1134.misc.rst

-1
This file was deleted.

Diff for: changelog/1155.bugfix.rst

-1
This file was deleted.

Diff for: changelog/1158.doc.rst

-1
This file was deleted.

Diff for: changelog/1159.bugfix.rst

-1
This file was deleted.

Diff for: changelog/1164.bugfix.rst

-1
This file was deleted.

Diff for: changelog/1189.bugfix.rst

-1
This file was deleted.

Diff for: disnake/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
__author__ = "Rapptz, EQUENOS"
1515
__license__ = "MIT"
1616
__copyright__ = "Copyright 2015-present Rapptz, 2021-present EQUENOS"
17-
__version__ = "2.9.1"
17+
__version__ = "2.9.2"
1818

1919
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
2020

@@ -82,7 +82,7 @@ class VersionInfo(NamedTuple):
8282

8383

8484
# fmt: off
85-
version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=1, releaselevel="final", serial=0)
85+
version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=2, releaselevel="final", serial=0)
8686
# fmt: on
8787

8888
logging.getLogger(__name__).addHandler(logging.NullHandler())

Diff for: docs/whats_new.rst

+22
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,28 @@ in specific versions. Please see :ref:`version_guarantees` for more information.
1717

1818
.. towncrier release notes start
1919
20+
.. _vp2p9p2:
21+
22+
v2.9.2
23+
------
24+
25+
Bug Fixes
26+
~~~~~~~~~
27+
- |commands| Fix erroneous :class:`LocalizationWarning`\s when using localized slash command parameters in cogs. (:issue:`1133`)
28+
- Handle unexpected ``RECONNECT`` opcode where ``HELLO`` is expected during initial shard connection. (:issue:`1155`)
29+
- Reconnect gateway websocket on protocol errors. (:issue:`1159`)
30+
- Avoid ``AttributeError`` in :class:`FFmpegAudio` when cleaning up after failing to spawn ffmpeg process. (:issue:`1164`)
31+
- Fix base URL for stickers with :attr:`StickerFormatType.gif`. (:issue:`1189`)
32+
33+
Documentation
34+
~~~~~~~~~~~~~
35+
- Adding some clarifying documentation around the executable parameters of audio classes based off of internal discussions. (:issue:`1158`)
36+
37+
Miscellaneous
38+
~~~~~~~~~~~~~
39+
- Add :class:`StandardSticker` to ``stickers`` parameter type annotation of :meth:`Messageable.send` and :meth:`ForumChannel.create_thread`. (:issue:`1134`)
40+
41+
2042
.. _vp2p9p1:
2143

2244
v2.9.1

0 commit comments

Comments
 (0)