Skip to content

Commit

Permalink
Bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tandemdude committed Jul 29, 2024
1 parent 2588d64 commit e072d56
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 12 deletions.
25 changes: 25 additions & 0 deletions docs/source/changelogs/v3-changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,31 @@ Below are all the changelogs for the new versions of hikari-lightbulb (version 3

<!-- next-changelog -->

## v3.0.0a8 (2024-07-29)

### Features

- Add `hooks` parameter to `client_from_app` - allowing commands to inherit common hooks from the client. ([#430](https://github.com/tandemdude/hikari-lightbulb/issues/430))

### Bugfixes

- Fix autocomplete callbacks not being called if the option had localization enabled.
- Fix command parameter validation failing sometimes when using long localization keys.
- Fix subcommands with localization enabled not being invoked as expected.
- Slightly improved performance of invoking nested subcommands.

### Deprecations and Removals

- - `Client.register_deferred` has been removed. You should now use `Client.register(defer_guilds=True)` instead.

- `guilds` kwarg for `Client.register` has new semantics. Read the docstring for more information.

([#429](https://github.com/tandemdude/hikari-lightbulb/issues/429))
- Removed `HookFailedException`. `ExecutionPipelineFailedException` now has two attributes containing the hooks that
failed, and the exception that caused them to fail. You may need to update your error handler to reflect this.

----

## v3.0.0a7 (2024-07-23)

### Features
Expand Down
2 changes: 0 additions & 2 deletions fragments/+better_exceptions.removed.md

This file was deleted.

1 change: 0 additions & 1 deletion fragments/+command_resolution.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion fragments/+localized_autocomplete.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion fragments/+localized_subcommands.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion fragments/+validation.bugfix.md

This file was deleted.

4 changes: 0 additions & 4 deletions fragments/429.removed.md

This file was deleted.

1 change: 0 additions & 1 deletion fragments/430.feature.md

This file was deleted.

2 changes: 1 addition & 1 deletion lightbulb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@
]

# Do not change the below field manually. It is updated by CI upon release.
__version__ = "3.0.0a7"
__version__ = "3.0.0a8"

0 comments on commit e072d56

Please sign in to comment.