diff --git a/CHANGELOG.md b/CHANGELOG.md index 3181ef5500..4d9fd27023 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 2.0.0.dev126 (2024-06-20) + +### Features + +- Add `registered_guild_id` field to `BaseCommandInteraction` ([#1930](https://github.com/hikari-py/hikari/issues/1930)) +- Add `clear_fields()` method to `Embed` ([#1933](https://github.com/hikari-py/hikari/issues/1933)) +- Add payload to deserialization error to make it easier to diagnose ([#1943](https://github.com/hikari-py/hikari/issues/1943)) + +### Bugfixes + +- Fix incorrect form uploads with transport sensitive content ([#1909](https://github.com/hikari-py/hikari/issues/1909)) + +### Documentation Improvements + +- Greatly optimize loading time ([#1901](https://github.com/hikari-py/hikari/issues/1901)) +- Remove extra indentation level from codeblocks ([#1902](https://github.com/hikari-py/hikari/issues/1902)) + +--- ## 2.0.0.dev125 (2024-04-28) ### Features diff --git a/changes/1901.documentation.md b/changes/1901.documentation.md deleted file mode 100644 index e5630e1c32..0000000000 --- a/changes/1901.documentation.md +++ /dev/null @@ -1 +0,0 @@ -Greatly optimize loading time diff --git a/changes/1902.documentation.md b/changes/1902.documentation.md deleted file mode 100644 index d0c3cdf695..0000000000 --- a/changes/1902.documentation.md +++ /dev/null @@ -1 +0,0 @@ -Remove extra indentation level from codeblocks diff --git a/changes/1909.bugfix.md b/changes/1909.bugfix.md deleted file mode 100644 index 6627e1d576..0000000000 --- a/changes/1909.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix incorrect form uploads with transport sensitive content diff --git a/changes/1930.feature.md b/changes/1930.feature.md deleted file mode 100644 index 26e1a6c30a..0000000000 --- a/changes/1930.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add `registered_guild_id` field to `BaseCommandInteraction` diff --git a/changes/1933.feature.md b/changes/1933.feature.md deleted file mode 100644 index 2792f81cba..0000000000 --- a/changes/1933.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add `clear_fields()` method to `Embed` diff --git a/changes/1943.feature.md b/changes/1943.feature.md deleted file mode 100644 index 1629071df4..0000000000 --- a/changes/1943.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add payload to deserialization error to make it easier to diagnose diff --git a/hikari/_about.py b/hikari/_about.py index e701b261aa..765906a4f1 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.dev126" __email__: typing.Final[str] = "davfsa@gmail.com" __issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues" __license__: typing.Final[str] = "MIT"