diff --git a/CHANGELOG.md b/CHANGELOG.md index a3106cb194..49f19c28bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,37 @@ This file is updated every release with the use of `towncrier` from the fragment .. towncrier release notes start +Hikari 2.0.0.dev110 (2022-08-08) +================================ + +Breaking Changes +---------------- + +- Removed case of `Member.mention` returning bang (`!`) mention, as it is deprecated by Discord. ([#1207](https://github.com/hikari-py/hikari/issues/1207)) + + +Deprecation +----------- + +- `RESTClient.edit_permission_overwrites` renamed to `RESTClient.edit_permission_overwrite` ([#1195](https://github.com/hikari-py/hikari/issues/1195)) + + +Features +-------- + +- Add `hikari.events.StickersUpdateEvent` and relevant cache internals. + Add sticker related public methods onto `hikari.impl.CacheImpl` and `hikari.guilds.Guild`. ([#1126](https://github.com/hikari-py/hikari/issues/1126)) +- `GuildVoiceChannel` now inherits from `TextableGuildChannel` instead of `GuildChannel`. ([#1189](https://github.com/hikari-py/hikari/issues/1189)) +- Add the `app_permissions` field to command and component interactions. ([#1201](https://github.com/hikari-py/hikari/issues/1201)) +- Add application command badge ([#1225](https://github.com/hikari-py/hikari/issues/1225)) + + +Bugfixes +-------- + +- Fix how CommandBuilder handles `default_member_permissions` to match the behaviour on PartialCommand. ([#1212](https://github.com/hikari-py/hikari/issues/1212)) + + Hikari 2.0.0.dev109 (2022-06-26) ================================ diff --git a/changes/1126.feature.md b/changes/1126.feature.md deleted file mode 100644 index 5fb8623ee0..0000000000 --- a/changes/1126.feature.md +++ /dev/null @@ -1,2 +0,0 @@ -Add `hikari.events.StickersUpdateEvent` and relevant cache internals. -Add sticker related public methods onto `hikari.impl.CacheImpl` and `hikari.guilds.Guild`. diff --git a/changes/1189.feature.md b/changes/1189.feature.md deleted file mode 100644 index 6fa6c63424..0000000000 --- a/changes/1189.feature.md +++ /dev/null @@ -1 +0,0 @@ -`GuildVoiceChannel` now inherits from `TextableGuildChannel` instead of `GuildChannel`. diff --git a/changes/1195.deprecation.md b/changes/1195.deprecation.md deleted file mode 100644 index 4624ce057f..0000000000 --- a/changes/1195.deprecation.md +++ /dev/null @@ -1 +0,0 @@ -`RESTClient.edit_permission_overwrites` renamed to `RESTClient.edit_permission_overwrite` diff --git a/changes/1201.feature.md b/changes/1201.feature.md deleted file mode 100644 index e00faef7c6..0000000000 --- a/changes/1201.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add the `app_permissions` field to command and component interactions. diff --git a/changes/1207.breaking.md b/changes/1207.breaking.md deleted file mode 100644 index 3b72d74143..0000000000 --- a/changes/1207.breaking.md +++ /dev/null @@ -1 +0,0 @@ -Removed case of `Member.mention` returning bang (`!`) mention, as it is deprecated by Discord. diff --git a/changes/1212.bugfix.md b/changes/1212.bugfix.md deleted file mode 100644 index e5bb026fd7..0000000000 --- a/changes/1212.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix how CommandBuilder handles `default_member_permissions` to match the behaviour on PartialCommand. diff --git a/changes/1225.feature.md b/changes/1225.feature.md deleted file mode 100644 index 434c0e3214..0000000000 --- a/changes/1225.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add application command badge