Skip to content

Commit

Permalink
chore(release): v2.9.2 (#1194)
Browse files Browse the repository at this point in the history
Co-authored-by: disnake-bot[bot] <139079794+disnake-bot[bot]@users.noreply.github.com>
  • Loading branch information
disnake-bot[bot] authored May 18, 2024
1 parent 687afa3 commit 0e4181a
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 9 deletions.
1 change: 0 additions & 1 deletion changelog/1133.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1134.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1155.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1158.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1159.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1164.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1189.bugfix.rst

This file was deleted.

4 changes: 2 additions & 2 deletions disnake/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__author__ = "Rapptz, EQUENOS"
__license__ = "MIT"
__copyright__ = "Copyright 2015-present Rapptz, 2021-present EQUENOS"
__version__ = "2.9.1"
__version__ = "2.9.2"

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

Expand Down Expand Up @@ -82,7 +82,7 @@ class VersionInfo(NamedTuple):


# fmt: off
version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=1, releaselevel="final", serial=0)
version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=2, releaselevel="final", serial=0)
# fmt: on

logging.getLogger(__name__).addHandler(logging.NullHandler())
22 changes: 22 additions & 0 deletions docs/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,28 @@ in specific versions. Please see :ref:`version_guarantees` for more information.

.. towncrier release notes start
.. _vp2p9p2:

v2.9.2
------

Bug Fixes
~~~~~~~~~
- |commands| Fix erroneous :class:`LocalizationWarning`\s when using localized slash command parameters in cogs. (:issue:`1133`)
- Handle unexpected ``RECONNECT`` opcode where ``HELLO`` is expected during initial shard connection. (:issue:`1155`)
- Reconnect gateway websocket on protocol errors. (:issue:`1159`)
- Avoid ``AttributeError`` in :class:`FFmpegAudio` when cleaning up after failing to spawn ffmpeg process. (:issue:`1164`)
- Fix base URL for stickers with :attr:`StickerFormatType.gif`. (:issue:`1189`)

Documentation
~~~~~~~~~~~~~
- Adding some clarifying documentation around the executable parameters of audio classes based off of internal discussions. (:issue:`1158`)

Miscellaneous
~~~~~~~~~~~~~
- Add :class:`StandardSticker` to ``stickers`` parameter type annotation of :meth:`Messageable.send` and :meth:`ForumChannel.create_thread`. (:issue:`1134`)


.. _vp2p9p1:

v2.9.1
Expand Down

0 comments on commit 0e4181a

Please sign in to comment.