diff --git a/CHANGELOG.md b/CHANGELOG.md index abc1e4839f..dbfacdef76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## 2.0.0.dev123 (2024-03-31) + +### Breaking Changes + +- Remove previously deprecated `Permissions.MANAGE_EMOJIS_AND_STICKERS` ([#1762](https://github.com/hikari-py/hikari/issues/1762)) + +### Features + +- Allow subscribing to generic events ([#1814](https://github.com/hikari-py/hikari/issues/1814)) +- Allow changing guild features (community, etc.) ([#1828](https://github.com/hikari-py/hikari/issues/1828)) +- Improve embed parameters typing ([#1841](https://github.com/hikari-py/hikari/issues/1841)) + +### Bugfixes + +- Fix `CommandInteractionOption.value` typehint not including `float` ([#1805](https://github.com/hikari-py/hikari/issues/1805)) +- `Member.joined_at` is now nullable due to breaking API change + - This will be received on guest members with temporary membership ([#1812](https://github.com/hikari-py/hikari/issues/1812)) +- Shard rate-limiters are now reset per websocket connection, avoiding a rare issue where a persistent network issue could allow the shard to be rate-limited ([#1813](https://github.com/hikari-py/hikari/issues/1813)) + +### Documentation Improvements + +- Switch documentation to mkdocs ([#1810](https://github.com/hikari-py/hikari/issues/1810)) + +--- ## 2.0.0.dev122 (2023-11-18) ### Deprecation diff --git a/changes/1762.breaking.md b/changes/1762.breaking.md deleted file mode 100644 index 2e47c33ce2..0000000000 --- a/changes/1762.breaking.md +++ /dev/null @@ -1 +0,0 @@ -Remove previously deprecated `Permissions.MANAGE_EMOJIS_AND_STICKERS` diff --git a/changes/1805.bugfix.md b/changes/1805.bugfix.md deleted file mode 100644 index 6b4c49d8eb..0000000000 --- a/changes/1805.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix `CommandInteractionOption.value` typehint not including `float` diff --git a/changes/1810.documentation.md b/changes/1810.documentation.md deleted file mode 100644 index 112f919b1c..0000000000 --- a/changes/1810.documentation.md +++ /dev/null @@ -1 +0,0 @@ -Switch documentation to mkdocs diff --git a/changes/1812.bugfix.md b/changes/1812.bugfix.md deleted file mode 100644 index 504d10e7e7..0000000000 --- a/changes/1812.bugfix.md +++ /dev/null @@ -1,2 +0,0 @@ -`Member.joined_at` is now nullable due to breaking API change - - This will be received on guest members with temporary membership diff --git a/changes/1813.bugfix.md b/changes/1813.bugfix.md deleted file mode 100644 index a61c166ff0..0000000000 --- a/changes/1813.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Shard rate-limiters are now reset per websocket connection, avoiding a rare issue where a persistent network issue could allow the shard to be rate-limited diff --git a/changes/1814.feature.md b/changes/1814.feature.md deleted file mode 100644 index e7eb091de6..0000000000 --- a/changes/1814.feature.md +++ /dev/null @@ -1 +0,0 @@ -Allow subscribing to generic events diff --git a/changes/1828.feature.md b/changes/1828.feature.md deleted file mode 100644 index b6eb11a09f..0000000000 --- a/changes/1828.feature.md +++ /dev/null @@ -1 +0,0 @@ -Allow changing guild features (community, etc.) diff --git a/changes/1841.feature.md b/changes/1841.feature.md deleted file mode 100644 index 3bd9819564..0000000000 --- a/changes/1841.feature.md +++ /dev/null @@ -1 +0,0 @@ -Improve embed parameters typing diff --git a/hikari/_about.py b/hikari/_about.py index b05954315a..4f6898e043 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.dev123" __email__: typing.Final[str] = "davfsa@gmail.com" __issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues" __license__: typing.Final[str] = "MIT"