diff --git a/docs/source/changelogs/v3-changelog.md b/docs/source/changelogs/v3-changelog.md index cea8fa25..b94cd6ca 100644 --- a/docs/source/changelogs/v3-changelog.md +++ b/docs/source/changelogs/v3-changelog.md @@ -8,6 +8,19 @@ Below are all the changelogs for the new versions of hikari-lightbulb (version 3 +## v3.0.0a2 (2024-06-28) + +### Features + +- Add `PRE_INVOKE` execution step to default execution step order. +- Add ability for `Loadable.listener`s to listen for multiple event types. + +### Bugfixes + +- Fix not being able to access option values when their name and description are localized. + +---- + ## v3.0.0a1 (2024-06-20) ### Features diff --git a/fragments/+loadable_multi_listen.feature.md b/fragments/+loadable_multi_listen.feature.md deleted file mode 100644 index 3a499684..00000000 --- a/fragments/+loadable_multi_listen.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add ability for `Loadable.listener`s to listen for multiple event types. diff --git a/fragments/+localization.bugfix.md b/fragments/+localization.bugfix.md deleted file mode 100644 index ec3b0307..00000000 --- a/fragments/+localization.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix not being able to access option values when their name and description are localized. diff --git a/fragments/+pre_invoke.feature.md b/fragments/+pre_invoke.feature.md deleted file mode 100644 index b0984c27..00000000 --- a/fragments/+pre_invoke.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add `PRE_INVOKE` execution step to default execution step order. diff --git a/lightbulb/__init__.py b/lightbulb/__init__.py index c9cdb9f1..94c97203 100644 --- a/lightbulb/__init__.py +++ b/lightbulb/__init__.py @@ -73,4 +73,4 @@ ] # Do not change the below field manually. It is updated by CI upon release. -__version__ = "3.0.0a2" +__version__ = "3.0.0a3"