Skip to content

Commit d76494e

Browse files
release: v2.5.3 (#773)
Co-authored-by: arl <[email protected]>
1 parent f4f6103 commit d76494e

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

Diff for: disnake/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__author__ = "Rapptz, EQUENOS"
1414
__license__ = "MIT"
1515
__copyright__ = "Copyright 2015-present Rapptz, 2021-present EQUENOS"
16-
__version__ = "2.5.2"
16+
__version__ = "2.5.3"
1717

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

@@ -77,6 +77,6 @@ class VersionInfo(NamedTuple):
7777
serial: int
7878

7979

80-
version_info: VersionInfo = VersionInfo(major=2, minor=5, micro=2, releaselevel="final", serial=0)
80+
version_info: VersionInfo = VersionInfo(major=2, minor=5, micro=3, releaselevel="final", serial=0)
8181

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

Diff for: docs/whats_new.rst

+19
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,25 @@ This page keeps a detailed human friendly rendering of what's new and changed
1212
in specific versions.
1313

1414

15+
.. _vp2p5p3:
16+
17+
v2.5.3
18+
------
19+
20+
This is a maintenance release with backports from v2.6.0.
21+
22+
Bug Fixes
23+
~~~~~~~~~
24+
25+
- Fix creation of forum threads without :class:`Permissions.manage_threads`. (:issue:`746`)
26+
- |commands| Fix edge case with parsing command annotations that contain a union of non-type objects, like ``Optional[Literal[1, 2, 3]]``. (:issue:`771`)
27+
28+
Miscellaneous
29+
~~~~~~~~~~~~~
30+
31+
- Limit installation of ``cchardet`` in the ``[speed]`` extra to Python versions below 3.10 (see `aiohttp#6857 <https://github.com/aio-libs/aiohttp/pull/6857>`__). (:issue:`772`)
32+
33+
1534
.. _vp2p5p2:
1635

1736
v2.5.2

0 commit comments

Comments
 (0)