diff --git a/docs/source/changelogs/v3-changelog.md b/docs/source/changelogs/v3-changelog.md index f8aaa97b..c25610fe 100644 --- a/docs/source/changelogs/v3-changelog.md +++ b/docs/source/changelogs/v3-changelog.md @@ -8,6 +8,18 @@ Below are all the changelogs for the new versions of hikari-lightbulb (version 3 +## v3.0.0a15 (2024-11-22) +### Features + +- `Menu.attach` now returns an instance of `MenuHandle` instead of a generic awaitable - allowing the menu to be stopped without using a `MenuContext` or timeout. + +### Bugfixes + +- Changed logging level for exceptions happening in tasks from `WARNING` to `ERROR`. ([#486](https://github.com/tandemdude/hikari-lightbulb/issues/486)) +- Fix sporadic attribute error when using `self.previous_row()` within a component menu class. + +---- + ## v3.0.0a14 (2024-10-30) ### Bugfixes diff --git a/fragments/+components_attr_error.bugfix.md b/fragments/+components_attr_error.bugfix.md deleted file mode 100644 index 5a974caa..00000000 --- a/fragments/+components_attr_error.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix sporadic attribute error when using `self.previous_row()` within a component menu class. diff --git a/fragments/+menu_handle.feature.md b/fragments/+menu_handle.feature.md deleted file mode 100644 index b265a4de..00000000 --- a/fragments/+menu_handle.feature.md +++ /dev/null @@ -1 +0,0 @@ -`Menu.attach` now returns an instance of `MenuHandle` instead of a generic awaitable - allowing the menu to be stopped without using a `MenuContext` or timeout. diff --git a/fragments/486.bugfix.md b/fragments/486.bugfix.md deleted file mode 100644 index 1c815d56..00000000 --- a/fragments/486.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Changed logging level for exceptions happening in tasks from `WARNING` to `ERROR`. diff --git a/lightbulb/__init__.py b/lightbulb/__init__.py index b3fcd335..d724ba0f 100644 --- a/lightbulb/__init__.py +++ b/lightbulb/__init__.py @@ -83,4 +83,4 @@ ] # Do not change the below field manually. It is updated by CI upon release. -__version__ = "3.0.0a14" +__version__ = "3.0.0a15"