Skip to content

Commit

Permalink
Prepare for release of 2.0.0.dev121 (#1713)
Browse files Browse the repository at this point in the history
Co-authored-by: hikari-bot <90276125+hikari-bot[bot]@users.noreply.github.com>
  • Loading branch information
hikari-bot[bot] committed Sep 10, 2023
1 parent b207cdc commit 25bbe12
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 14 deletions.
24 changes: 24 additions & 0 deletions 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
Expand Down
1 change: 0 additions & 1 deletion changes/1645.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1648.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1653.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1659.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1673.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1679.feature.md

This file was deleted.

4 changes: 0 additions & 4 deletions changes/1683.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1702.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1705.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1712.feature.md

This file was deleted.

2 changes: 1 addition & 1 deletion hikari/_about.py
Expand Up @@ -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"
Expand Down

0 comments on commit 25bbe12

Please sign in to comment.