diff --git a/CHANGELOG.md b/CHANGELOG.md index 933c63b60..442fc4c99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## 2.1.0 (2024-09-25) + +### Breaking Changes + +- `VoiceState.member` can now be `None` in cases where Discord doesn't send the relevant information ([#2038](https://github.com/hikari-py/hikari/issues/2038)) + +### Features + +- Add the optional audit log `reason` argument to `hikari.api.rest.RESTClient.delete_channel` and + `hikari.impl.rest.RESTClientImpl.delete_channel`, the same way it already exists for e.g. + `edit_channel` ([#2058](https://github.com/hikari-py/hikari/issues/2058)) + +### Bugfixes + +- Fix issue when deserializing voice states with missing member data ([#2038](https://github.com/hikari-py/hikari/issues/2038)) +- Fix `fetch_application_emojis` endpoint deserialization ([#2050](https://github.com/hikari-py/hikari/issues/2050)) +- Fix uploading files when using aiohttp 3.10.6 and onwards ([#2059](https://github.com/hikari-py/hikari/issues/2059)) + +--- ## 2.0.0 (2024-08-28) ### Breaking Changes diff --git a/changes/2038.breaking.md b/changes/2038.breaking.md deleted file mode 100644 index 23e911224..000000000 --- a/changes/2038.breaking.md +++ /dev/null @@ -1 +0,0 @@ -`VoiceState.member` can now be `None` in cases where Discord doesn't send the relevant information diff --git a/changes/2038.bugfix.md b/changes/2038.bugfix.md deleted file mode 100644 index 0175be6de..000000000 --- a/changes/2038.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix issue when deserializing voice states with missing member data diff --git a/changes/2050.bugfix.md b/changes/2050.bugfix.md deleted file mode 100644 index e7c90f80e..000000000 --- a/changes/2050.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix `fetch_application_emojis` endpoint deserialization diff --git a/changes/2058.feature.md b/changes/2058.feature.md deleted file mode 100644 index c51bf3999..000000000 --- a/changes/2058.feature.md +++ /dev/null @@ -1,3 +0,0 @@ -Add the optional audit log `reason` argument to `hikari.api.rest.RESTClient.delete_channel` and -`hikari.impl.rest.RESTClientImpl.delete_channel`, the same way it already exists for e.g. -`edit_channel` diff --git a/changes/2059.bugfix.md b/changes/2059.bugfix.md deleted file mode 100644 index 1609d03b4..000000000 --- a/changes/2059.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix uploading files when using aiohttp 3.10.6 and onwards diff --git a/hikari/_about.py b/hikari/_about.py index 1f8656610..e815ecd4e 100644 --- a/hikari/_about.py +++ b/hikari/_about.py @@ -34,10 +34,10 @@ __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.1.0" __email__: typing.Final[str] = "davfsa@gmail.com" __issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues" __license__: typing.Final[str] = "MIT" __url__: typing.Final[str] = "https://github.com/hikari-py/hikari" -__version__: typing.Final[str] = "2.1.0.dev0" +__version__: typing.Final[str] = "2.1.0" __git_sha1__: typing.Final[str] = "HEAD"