Skip to content

Commit

Permalink
Prepare for release of 2.0.0.dev119 (#1611)
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 May 8, 2023
1 parent ca4193c commit 2d5d5fc
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 2.0.0.dev119 (2023-05-08)

### Breaking Changes

- Remove deprecated functionality for 2.0.0.dev119
- Removed `TextInputBuilder.required` in favour of `TextInputBuilder.is_required`.
- Removed the ability to pass `CommandChoices` instead of `AutocompleteChoiceBuilders` when making autocomplete responses. ([#1580](https://github.com/hikari-py/hikari/issues/1580))

### Bugfixes

- Fix `messages` argument typing for `RESTClient.delete_messages`. ([#1581](https://github.com/hikari-py/hikari/issues/1581))
- Default `HTTPSettings.enable_cleanup_closed` to `False`.
- CPython3.11 changes around SSLProto have made this quite unstable and prone to errors when dealing with unclosed TLS transports, which ends up in aiohttp calling close and abort twice. ([#1585](https://github.com/hikari-py/hikari/issues/1585))
- `Guild.get_channel`, `Guild.get_emoji`, `Guild.get_sticker` and `Guild.get_role` now only return entries from the relevant guild. ([#1608](https://github.com/hikari-py/hikari/issues/1608))

---


## 2.0.0.dev118 (2023-04-02)

### Breaking Changes
Expand Down
3 changes: 0 additions & 3 deletions changes/1580.breaking.md

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions changes/1585.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1608.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.dev119"
__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 2d5d5fc

Please sign in to comment.