From 1b8c5bc9b31980045f56ddfd15829ac1480e5b22 Mon Sep 17 00:00:00 2001 From: "disnake-bot[bot]" <139079794+disnake-bot[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 20:56:09 +0100 Subject: [PATCH] release: v2.9.1 (#1130) Signed-off-by: shiftinv <8530778+shiftinv@users.noreply.github.com> Co-authored-by: disnake-bot[bot] <139079794+disnake-bot[bot]@users.noreply.github.com> Co-authored-by: shiftinv <8530778+shiftinv@users.noreply.github.com> --- changelog/1105.doc.rst | 1 - changelog/1111.bugfix.rst | 1 - changelog/1120.bugfix.rst | 1 - changelog/1123.bugfix.rst | 1 - disnake/__init__.py | 4 ++-- docs/whats_new.rst | 16 ++++++++++++++++ 6 files changed, 18 insertions(+), 6 deletions(-) delete mode 100644 changelog/1105.doc.rst delete mode 100644 changelog/1111.bugfix.rst delete mode 100644 changelog/1120.bugfix.rst delete mode 100644 changelog/1123.bugfix.rst diff --git a/changelog/1105.doc.rst b/changelog/1105.doc.rst deleted file mode 100644 index eceb16fc71..0000000000 --- a/changelog/1105.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Miscellaneous grammar/typo fixes for :doc:`api/audit_logs`. diff --git a/changelog/1111.bugfix.rst b/changelog/1111.bugfix.rst deleted file mode 100644 index 4efa8693ed..0000000000 --- a/changelog/1111.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Allow ``cls`` argument in select menu decorators (e.g. :func`ui.string_select`) to be specified by keyword instead of being positional-only. diff --git a/changelog/1120.bugfix.rst b/changelog/1120.bugfix.rst deleted file mode 100644 index 146ac4a8de..0000000000 --- a/changelog/1120.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -|commands| Fix edge case in evaluation of multiple identical annotations with forwardrefs in a single signature. diff --git a/changelog/1123.bugfix.rst b/changelog/1123.bugfix.rst deleted file mode 100644 index 625f275381..0000000000 --- a/changelog/1123.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix :meth:`Thread.permissions_for` not working in some cases due to an incorrect import. diff --git a/disnake/__init__.py b/disnake/__init__.py index 7d63e967fb..821674a04a 100644 --- a/disnake/__init__.py +++ b/disnake/__init__.py @@ -14,7 +14,7 @@ __author__ = "Rapptz, EQUENOS" __license__ = "MIT" __copyright__ = "Copyright 2015-present Rapptz, 2021-present EQUENOS" -__version__ = "2.9.0" +__version__ = "2.9.1" __path__ = __import__("pkgutil").extend_path(__path__, __name__) @@ -82,7 +82,7 @@ class VersionInfo(NamedTuple): # fmt: off -version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=0, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=2, minor=9, micro=1, releaselevel="final", serial=0) # fmt: on logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/docs/whats_new.rst b/docs/whats_new.rst index d1d3064891..d9bd644863 100644 --- a/docs/whats_new.rst +++ b/docs/whats_new.rst @@ -17,6 +17,22 @@ in specific versions. Please see :ref:`version_guarantees` for more information. .. towncrier release notes start +.. _vp2p9p1: + +v2.9.1 +------ + +Bug Fixes +~~~~~~~~~ +- Allow ``cls`` argument in select menu decorators (e.g. :func:`ui.string_select`) to be specified by keyword instead of being positional-only. (:issue:`1111`) +- |commands| Fix edge case in evaluation of multiple identical annotations with forwardrefs in a single signature. (:issue:`1120`) +- Fix :meth:`Thread.permissions_for` not working in some cases due to an incorrect import. (:issue:`1123`) + +Documentation +~~~~~~~~~~~~~ +- Miscellaneous grammar/typo fixes for :doc:`api/audit_logs`. (:issue:`1105`) + + .. _vp2p9p0: v2.9.0