Skip to content

Commit

Permalink
release: 2.6.1 (#813)
Browse files Browse the repository at this point in the history
  • Loading branch information
onerandomusername authored Oct 20, 2022
1 parent 6140dbe commit 17a5717
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
1 change: 0 additions & 1 deletion changelog/792.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/810.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 @@ -15,7 +15,7 @@
__author__ = "Rapptz, EQUENOS"
__license__ = "MIT"
__copyright__ = "Copyright 2015-present Rapptz, 2021-present EQUENOS"
__version__ = "2.6.0"
__version__ = "2.6.1"

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

Expand Down Expand Up @@ -80,6 +80,6 @@ class VersionInfo(NamedTuple):
serial: int


version_info: VersionInfo = VersionInfo(major=2, minor=6, micro=0, releaselevel="final", serial=0)
version_info: VersionInfo = VersionInfo(major=2, minor=6, micro=1, releaselevel="final", serial=0)

logging.getLogger(__name__).addHandler(logging.NullHandler())
10 changes: 10 additions & 0 deletions docs/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ in specific versions.

.. towncrier release notes start
v2.6.1
------
.. _vp2p6p1:

Bug Fixes
~~~~~~~~~
- Ensure that embed fields are copied properly by :func:`Embed.copy` and that the copied embed is completely separate from the original one. (:issue:`792`)
- Fix an issue with :meth:`Member.ban` erroring when the ``delete_message_days`` parameter was provided. (:issue:`810`)


.. _vp2p6p0:

v2.6.0
Expand Down

0 comments on commit 17a5717

Please sign in to comment.