From 5961d1a3f27117f43ee4a7e5f14d488393eb94c8 Mon Sep 17 00:00:00 2001 From: "hikari-bot[bot]" <90276125+hikari-bot[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 15:03:33 +0000 Subject: [PATCH] Prepare for release of 2.0.0.dev122 (#1761) Co-authored-by: hikari-bot <90276125+hikari-bot[bot]@users.noreply.github.com> --- CHANGELOG.md | 23 +++++++++++++++++++++++ changes/1357.feature.md | 1 - changes/1661.feature.md | 1 - changes/1720.bugfix.md | 1 - changes/1740.feature.md | 2 -- changes/1744.bugfix.md | 1 - changes/1745.bugfix.md | 3 --- changes/1758.deprecation.md | 1 - changes/1758.feature.md | 1 - hikari/_about.py | 2 +- 10 files changed, 24 insertions(+), 12 deletions(-) delete mode 100644 changes/1357.feature.md delete mode 100644 changes/1661.feature.md delete mode 100644 changes/1720.bugfix.md delete mode 100644 changes/1740.feature.md delete mode 100644 changes/1744.bugfix.md delete mode 100644 changes/1745.bugfix.md delete mode 100644 changes/1758.deprecation.md delete mode 100644 changes/1758.feature.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 9408455504..abc1e4839f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## 2.0.0.dev122 (2023-11-18) + +### Deprecation + +- Deprecate `Permissions.MANAGE_EMOJIS_AND_STICKERS` in favour of `Permissions.MANAGE_GUILD_EXPREASSIONS` ([#1758](https://github.com/hikari-py/hikari/issues/1758)) + +### Features + +- Add Python 3.12 support. ([#1357](https://github.com/hikari-py/hikari/issues/1357)) +- Allow class listeners ([#1661](https://github.com/hikari-py/hikari/issues/1661)) +- Add missing `clear_x` methods to `InteractionMessageBuilder` + - This brings the functionality more in-line with other message edit APIs ([#1740](https://github.com/hikari-py/hikari/issues/1740)) +- Add missing permissions ([#1758](https://github.com/hikari-py/hikari/issues/1758)) + +### Bugfixes + +- Fix optional connection "revoked" field KeyError when fetching connections. ([#1720](https://github.com/hikari-py/hikari/issues/1720)) +- Ensure shard connect and disconnect always get sent in pairs and properly waited for ([#1744](https://github.com/hikari-py/hikari/issues/1744)) +- Improve handing of force exiting a bot (double interrupt) + - Improve exception message + - Reset signal handlers to original ones after no longer capturing signals ([#1745](https://github.com/hikari-py/hikari/issues/1745)) + +--- ## 2.0.0.dev121 (2023-09-10) ### Features diff --git a/changes/1357.feature.md b/changes/1357.feature.md deleted file mode 100644 index 0593ed2571..0000000000 --- a/changes/1357.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add Python 3.12 support. diff --git a/changes/1661.feature.md b/changes/1661.feature.md deleted file mode 100644 index 793ed5438d..0000000000 --- a/changes/1661.feature.md +++ /dev/null @@ -1 +0,0 @@ -Allow class listeners diff --git a/changes/1720.bugfix.md b/changes/1720.bugfix.md deleted file mode 100644 index 8fd9ed818f..0000000000 --- a/changes/1720.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix optional connection "revoked" field KeyError when fetching connections. diff --git a/changes/1740.feature.md b/changes/1740.feature.md deleted file mode 100644 index 5f6ea6400b..0000000000 --- a/changes/1740.feature.md +++ /dev/null @@ -1,2 +0,0 @@ -Add missing `clear_x` methods to `InteractionMessageBuilder` -- This brings the functionality more in-line with other message edit APIs diff --git a/changes/1744.bugfix.md b/changes/1744.bugfix.md deleted file mode 100644 index 3596046f36..0000000000 --- a/changes/1744.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Ensure shard connect and disconnect always get sent in pairs and properly waited for diff --git a/changes/1745.bugfix.md b/changes/1745.bugfix.md deleted file mode 100644 index 36a7ee3dd1..0000000000 --- a/changes/1745.bugfix.md +++ /dev/null @@ -1,3 +0,0 @@ -Improve handing of force exiting a bot (double interrupt) -- Improve exception message -- Reset signal handlers to original ones after no longer capturing signals diff --git a/changes/1758.deprecation.md b/changes/1758.deprecation.md deleted file mode 100644 index 726c67d0e9..0000000000 --- a/changes/1758.deprecation.md +++ /dev/null @@ -1 +0,0 @@ -Deprecate `Permissions.MANAGE_EMOJIS_AND_STICKERS` in favour of `Permissions.MANAGE_GUILD_EXPREASSIONS` diff --git a/changes/1758.feature.md b/changes/1758.feature.md deleted file mode 100644 index be7f2df73b..0000000000 --- a/changes/1758.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add missing permissions diff --git a/hikari/_about.py b/hikari/_about.py index 574f361f20..9de02e49b2 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.dev122" __email__: typing.Final[str] = "davfsa@gmail.com" __issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues" __license__: typing.Final[str] = "MIT"