diff --git a/CHANGELOG.md b/CHANGELOG.md index add1bf5420..337a0cfbf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +## 2.0.0.dev120 (2023-06-08) + +### Breaking Changes + +- Remove previously deprecated `hikari.impl.bot` module ([#1612](https://github.com/hikari-py/hikari/issues/1612)) + +### Deprecation + +- Deprecate `User.discriminator` ([#1631](https://github.com/hikari-py/hikari/issues/1631)) + +### Features + +- Implement voice messages ([#1609](https://github.com/hikari-py/hikari/issues/1609)) +- Implement username changes: + - Add `global_name` + - `User.__str__()` respects `global_name` now + - `User.default_avatar_url` returns correct URL for migrated accounts ([#1631](https://github.com/hikari-py/hikari/issues/1631)) + +### Bugfixes + +- Fix a bug in `RESTClient.edit_guild` which load to closed stream errors ([#1627](https://github.com/hikari-py/hikari/issues/1627)) +- Properly handle DM channels in resolved interaction channels. ([#1628](https://github.com/hikari-py/hikari/issues/1628)) + +--- + + ## 2.0.0.dev119 (2023-05-08) ### Breaking Changes diff --git a/changes/1609.feature.md b/changes/1609.feature.md deleted file mode 100644 index f58648ce27..0000000000 --- a/changes/1609.feature.md +++ /dev/null @@ -1 +0,0 @@ -Implement voice messages diff --git a/changes/1612.breaking.md b/changes/1612.breaking.md deleted file mode 100644 index 46e3b29572..0000000000 --- a/changes/1612.breaking.md +++ /dev/null @@ -1 +0,0 @@ -Remove previously deprecated `hikari.impl.bot` module diff --git a/changes/1627.bugfix.md b/changes/1627.bugfix.md deleted file mode 100644 index 6520ff8b4c..0000000000 --- a/changes/1627.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix a bug in `RESTClient.edit_guild` which load to closed stream errors diff --git a/changes/1628.bugfix.md b/changes/1628.bugfix.md deleted file mode 100644 index dd79308ad3..0000000000 --- a/changes/1628.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Properly handle DM channels in resolved interaction channels. diff --git a/changes/1631.deprecation.md b/changes/1631.deprecation.md deleted file mode 100644 index 6e75511351..0000000000 --- a/changes/1631.deprecation.md +++ /dev/null @@ -1 +0,0 @@ -Deprecate `User.discriminator` diff --git a/changes/1631.feature.md b/changes/1631.feature.md deleted file mode 100644 index e69113a53d..0000000000 --- a/changes/1631.feature.md +++ /dev/null @@ -1,4 +0,0 @@ -Implement username changes: -- Add `global_name` -- `User.__str__()` respects `global_name` now -- `User.default_avatar_url` returns correct URL for migrated accounts diff --git a/hikari/_about.py b/hikari/_about.py index f774bec252..ac7c9e47dd 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.dev120" __email__: typing.Final[str] = "davfsa@gmail.com" __issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues" __license__: typing.Final[str] = "MIT"