From 2d5d5fcf48ab0d3ca9434171afdab140360e13ed Mon Sep 17 00:00:00 2001 From: "hikari-bot[bot]" <90276125+hikari-bot[bot]@users.noreply.github.com> Date: Mon, 8 May 2023 09:48:26 +0000 Subject: [PATCH] Prepare for release of 2.0.0.dev119 (#1611) Co-authored-by: hikari-bot <90276125+hikari-bot[bot]@users.noreply.github.com> --- CHANGELOG.md | 18 ++++++++++++++++++ changes/1580.breaking.md | 3 --- changes/1581.bugfix.md | 1 - changes/1585.bugfix.md | 2 -- changes/1608.bugfix.md | 1 - hikari/_about.py | 2 +- 6 files changed, 19 insertions(+), 8 deletions(-) delete mode 100644 changes/1580.breaking.md delete mode 100644 changes/1581.bugfix.md delete mode 100644 changes/1585.bugfix.md delete mode 100644 changes/1608.bugfix.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d393606b4..add1bf5420 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/changes/1580.breaking.md b/changes/1580.breaking.md deleted file mode 100644 index d1391854c4..0000000000 --- a/changes/1580.breaking.md +++ /dev/null @@ -1,3 +0,0 @@ -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. diff --git a/changes/1581.bugfix.md b/changes/1581.bugfix.md deleted file mode 100644 index d9006db3e7..0000000000 --- a/changes/1581.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix `messages` argument typing for `RESTClient.delete_messages`. diff --git a/changes/1585.bugfix.md b/changes/1585.bugfix.md deleted file mode 100644 index 428176b358..0000000000 --- a/changes/1585.bugfix.md +++ /dev/null @@ -1,2 +0,0 @@ -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. diff --git a/changes/1608.bugfix.md b/changes/1608.bugfix.md deleted file mode 100644 index 11faecb4d6..0000000000 --- a/changes/1608.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -`Guild.get_channel`, `Guild.get_emoji`, `Guild.get_sticker` and `Guild.get_role` now only return entries from the relevant guild. diff --git a/hikari/_about.py b/hikari/_about.py index 9aa4ecd394..97ddbe9ed1 100644 --- a/hikari/_about.py +++ b/hikari/_about.py @@ -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] = "davfsa@gmail.com" __issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues" __license__: typing.Final[str] = "MIT"