From 9840fbc8b23e7ea55131c6575c4e94d151dd9115 Mon Sep 17 00:00:00 2001 From: "disnake-bot[bot]" <139079794+disnake-bot[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 19:41:44 +0000 Subject: [PATCH 1/3] chore: update version to 2.9.1 --- disnake/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()) From aa5915bc5f9ea7f2d60f1b2b64014176fe43a271 Mon Sep 17 00:00:00 2001 From: "disnake-bot[bot]" <139079794+disnake-bot[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 19:41:45 +0000 Subject: [PATCH 2/3] docs: build changelog --- changelog/1105.doc.rst | 1 - changelog/1111.bugfix.rst | 1 - changelog/1120.bugfix.rst | 1 - changelog/1123.bugfix.rst | 1 - docs/whats_new.rst | 16 ++++++++++++++++ 5 files changed, 16 insertions(+), 4 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/docs/whats_new.rst b/docs/whats_new.rst index d1d3064891..b531fab003 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 From c4237bb971d889d23dace5bb4b5951eef175d6b5 Mon Sep 17 00:00:00 2001 From: shiftinv <8530778+shiftinv@users.noreply.github.com> Date: Mon, 30 Oct 2023 20:46:34 +0100 Subject: [PATCH 3/3] chore: fix changelog typo Signed-off-by: shiftinv <8530778+shiftinv@users.noreply.github.com> --- docs/whats_new.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/whats_new.rst b/docs/whats_new.rst index b531fab003..d9bd644863 100644 --- a/docs/whats_new.rst +++ b/docs/whats_new.rst @@ -24,7 +24,7 @@ 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`) +- 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`)