Skip to content

Commit

Permalink
chore(release): v2.9.3 (#1242)
Browse files Browse the repository at this point in the history
Signed-off-by: shiftinv <[email protected]>
Co-authored-by: disnake-bot[bot] <139079794+disnake-bot[bot]@users.noreply.github.com>
Co-authored-by: shiftinv <[email protected]>
  • Loading branch information
disnake-bot[bot] and shiftinv authored Nov 14, 2024
1 parent ee5790c commit 8e5c73b
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 6 deletions.
1 change: 0 additions & 1 deletion changelog/1180.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1228.feature.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog/1241.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.2"
__version__ = "2.9.3"

__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=2, releaselevel="final", serial=0)
version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=3, releaselevel="final", serial=0)
# fmt: on

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

.. towncrier release notes start
.. _vp2p9p3:

v2.9.3
------

This is a maintainance release with several minor bugfixes.
Notably, this includes support for a newer voice encryption mode;
all modes supported in previous versions are scheduled to be :ddocs:`discontinued <change-log#voice-encryption-modes>` on 18th November 2024,
and voice connections using the builtin :class:`VoiceClient` will fail to connect.

New Features
~~~~~~~~~~~~
- Add support for ``aead_xchacha20_poly1305_rtpsize`` encryption mode for voice connections, and remove deprecated ``xsalsa20_poly1305*`` modes. (:issue:`1228`)

Bug Fixes
~~~~~~~~~
- Attempt to handle abrupt websocket closures on ``aiohttp >= 3.9.0`` and ``python < 3.11.0`` gracefully. (:issue:`1241`)

Documentation
~~~~~~~~~~~~~
- Adding some clarifying documentation around the type of :attr:`AuditLogEntry.extra` when the action is :attr:`~AuditLogAction.overwrite_create`. (:issue:`1180`)

Miscellaneous
~~~~~~~~~~~~~
- Raise PyNaCl version requirement to ``v1.5.0``. (:issue:`1228`)


.. _vp2p9p2:

v2.9.2
Expand Down

0 comments on commit 8e5c73b

Please sign in to comment.