diff --git a/CHANGELOG.md b/CHANGELOG.md index 337a0cfbf8..9408455504 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## 2.0.0.dev121 (2023-09-10) + +### Features + +- Add `approximate_member_count` and `approximate_presence_count` to `OwnGuild`. ([#1659](https://github.com/hikari-py/hikari/issues/1659)) +- Add `CacheSettings.only_my_member` to only cache the bot member. ([#1679](https://github.com/hikari-py/hikari/issues/1679)) +- Bots can now utilize `Activity.state` + - When used with `type` set to `ActivityType.CUSTOM`, it will show as the text for the custom status. + Syntactic sugar also exists to support simply using `name` instead of `state`. + - Can be used with other activity types to provide additional information on the activity. ([#1683](https://github.com/hikari-py/hikari/issues/1683)) +- Add missing Audit Log event types to `AuditLogEventType` ([#1705](https://github.com/hikari-py/hikari/issues/1705)) +- Add `approximate_guild_count` field to own `Application` ([#1712](https://github.com/hikari-py/hikari/issues/1712)) + +### Bugfixes + +- Handle connection reset error on shards. ([#1645](https://github.com/hikari-py/hikari/issues/1645)) +- Retry REST requests on connection errors ([#1648](https://github.com/hikari-py/hikari/issues/1648)) +- Add support for text in stage channels ([#1653](https://github.com/hikari-py/hikari/issues/1653)) +- Fix incorrect calculation for the default avatar of migrated users ([#1673](https://github.com/hikari-py/hikari/issues/1673)) +- Fix attachments not being removed in message edits when `attachment` or `attachments` is `None` ([#1702](https://github.com/hikari-py/hikari/issues/1702)) + +--- + + ## 2.0.0.dev120 (2023-06-08) ### Breaking Changes diff --git a/changes/1645.bugfix.md b/changes/1645.bugfix.md deleted file mode 100644 index 9133cea8c3..0000000000 --- a/changes/1645.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Handle connection reset error on shards. diff --git a/changes/1648.bugfix.md b/changes/1648.bugfix.md deleted file mode 100644 index 64c2b65966..0000000000 --- a/changes/1648.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Retry REST requests on connection errors diff --git a/changes/1653.bugfix.md b/changes/1653.bugfix.md deleted file mode 100644 index 67d9e11546..0000000000 --- a/changes/1653.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Add support for text in stage channels diff --git a/changes/1659.feature.md b/changes/1659.feature.md deleted file mode 100644 index 11b107d0f5..0000000000 --- a/changes/1659.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add `approximate_member_count` and `approximate_presence_count` to `OwnGuild`. diff --git a/changes/1673.bugfix.md b/changes/1673.bugfix.md deleted file mode 100644 index e0d8fdccb9..0000000000 --- a/changes/1673.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix incorrect calculation for the default avatar of migrated users diff --git a/changes/1679.feature.md b/changes/1679.feature.md deleted file mode 100644 index 4e2839f5c6..0000000000 --- a/changes/1679.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add `CacheSettings.only_my_member` to only cache the bot member. diff --git a/changes/1683.feature.md b/changes/1683.feature.md deleted file mode 100644 index 0fe12cbb1c..0000000000 --- a/changes/1683.feature.md +++ /dev/null @@ -1,4 +0,0 @@ -Bots can now utilize `Activity.state` -- When used with `type` set to `ActivityType.CUSTOM`, it will show as the text for the custom status. - Syntactic sugar also exists to support simply using `name` instead of `state`. -- Can be used with other activity types to provide additional information on the activity. diff --git a/changes/1702.bugfix.md b/changes/1702.bugfix.md deleted file mode 100644 index a686079c66..0000000000 --- a/changes/1702.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix attachments not being removed in message edits when `attachment` or `attachments` is `None` diff --git a/changes/1705.feature.md b/changes/1705.feature.md deleted file mode 100644 index 2d52cdd0d6..0000000000 --- a/changes/1705.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add missing Audit Log event types to `AuditLogEventType` diff --git a/changes/1712.feature.md b/changes/1712.feature.md deleted file mode 100644 index ca62349784..0000000000 --- a/changes/1712.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add `approximate_guild_count` field to own `Application` diff --git a/hikari/_about.py b/hikari/_about.py index 3145615054..6336f8b4a6 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.dev121" __email__: typing.Final[str] = "davfsa@gmail.com" __issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues" __license__: typing.Final[str] = "MIT"