Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release of 2.0.0.dev122 #1761

Merged
merged 1 commit into from
Nov 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## 2.0.0.dev122 (2023-11-18)

### Deprecation

- Deprecate `Permissions.MANAGE_EMOJIS_AND_STICKERS` in favour of `Permissions.MANAGE_GUILD_EXPREASSIONS` ([#1758](https://github.com/hikari-py/hikari/issues/1758))

### Features

- Add Python 3.12 support. ([#1357](https://github.com/hikari-py/hikari/issues/1357))
- Allow class listeners ([#1661](https://github.com/hikari-py/hikari/issues/1661))
- Add missing `clear_x` methods to `InteractionMessageBuilder`
- This brings the functionality more in-line with other message edit APIs ([#1740](https://github.com/hikari-py/hikari/issues/1740))
- Add missing permissions ([#1758](https://github.com/hikari-py/hikari/issues/1758))

### Bugfixes

- Fix optional connection "revoked" field KeyError when fetching connections. ([#1720](https://github.com/hikari-py/hikari/issues/1720))
- Ensure shard connect and disconnect always get sent in pairs and properly waited for ([#1744](https://github.com/hikari-py/hikari/issues/1744))
- Improve handing of force exiting a bot (double interrupt)
- Improve exception message
- Reset signal handlers to original ones after no longer capturing signals ([#1745](https://github.com/hikari-py/hikari/issues/1745))

---
## 2.0.0.dev121 (2023-09-10)

### Features
Expand Down
1 change: 0 additions & 1 deletion changes/1357.feature.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions changes/1740.feature.md

This file was deleted.

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

This file was deleted.

3 changes: 0 additions & 3 deletions changes/1745.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/1758.deprecation.md

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion hikari/_about.py
Original file line number Diff line number Diff line change
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.dev122"
__email__: typing.Final[str] = "[email protected]"
__issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues"
__license__: typing.Final[str] = "MIT"
Expand Down