Skip to content

Commit

Permalink
Prepare for release of 2.0.0.dev117 (#1534)
Browse files Browse the repository at this point in the history
Co-authored-by: hikari-bot <90276125+hikari-bot[bot]@users.noreply.github.com>
  • Loading branch information
hikari-bot[bot] authored Mar 6, 2023
1 parent f5f7c5a commit 4adbadc
Show file tree
Hide file tree
Showing 13 changed files with 28 additions and 14 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## 2.0.0.dev117 (2023-03-06)

### Breaking Changes

- Remove previously deprecated functionality:
- `delete_message_days` parameter for `ban` methods. ([#1496](https://github.com/hikari-py/hikari/issues/1496))
- `type` can no-longer be specified while initialise `hikari.impl.special_endpoints.TextSelectMenuBuilder` and `hikari.impl.special_endpoints.ChannelSelectMenuBuilder`.
`hikari.api.special_endpoints.SelectOptionBuilder` no-longer inherits from `hikari.api.special_endpoints.ComponentBuilder` (but it still has a `build` method). ([#1509](https://github.com/hikari-py/hikari/issues/1509))

### Features

- Pre-maturely fetch the public key if not present when starting an interaction server. ([#1423](https://github.com/hikari-py/hikari/issues/1423))
- Add and document the new `SUPPRESS_NOTIFICATIONS` message flag. ([#1504](https://github.com/hikari-py/hikari/issues/1504))
- `hikari.impl.special_endpoints.ChannelSelectMenuBuilder` and `hikari.impl.special_endpoints.TextSelectMenuBuilder` are now both exported directly on `hikari.impl`. ([#1508](https://github.com/hikari-py/hikari/issues/1508))
- `type` property to the component builders. ([#1509](https://github.com/hikari-py/hikari/issues/1509))
- Traits now use `abc.abstractmethod`. This gives better type errors. ([#1516](https://github.com/hikari-py/hikari/issues/1516))
- `token_type` now defaults to `"Bot"` when initialising `RESTBot` with a string token. ([#1527](https://github.com/hikari-py/hikari/issues/1527))

### Bugfixes

- Re-export missing exports from `hikari.api.special_endpoints` and `hikari.components`. ([#1501](https://github.com/hikari-py/hikari/issues/1501))
- Fix `PartialSticker.image_url` not accounting for stickers with GIF format. ([#1506](https://github.com/hikari-py/hikari/issues/1506))
- Await bucket manager gc task to completion when closing ([#1529](https://github.com/hikari-py/hikari/issues/1529))

---


## 2.0.0.dev116 (2023-02-06)

### Breaking Changes
Expand Down
1 change: 0 additions & 1 deletion changes/1423.feature.md

This file was deleted.

2 changes: 0 additions & 2 deletions changes/1496.breaking.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1501.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1504.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1506.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1508.feature.md

This file was deleted.

2 changes: 0 additions & 2 deletions changes/1509.breaking.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1509.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1516.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1527.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1529.bugfix.md

This file was deleted.

2 changes: 1 addition & 1 deletion hikari/_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
__copyright__: typing.Final[str] = "2021-present, davfsa"
__coverage__: typing.Final[str] = "https://codeclimate.com/github/hikari-py/hikari"
__discord_invite__: typing.Final[str] = "https://discord.gg/Jx4cNGG"
__docs__: typing.Final[str] = "https://docs.hikari-py.dev/en/master"
__docs__: typing.Final[str] = "https://docs.hikari-py.dev/en/2.0.0.dev117"
__email__: typing.Final[str] = "[email protected]"
__issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues"
__license__: typing.Final[str] = "MIT"
Expand Down

0 comments on commit 4adbadc

Please sign in to comment.