From c5439a01e80be61082ba57710a6a791fec582f7b Mon Sep 17 00:00:00 2001 From: "hikari-bot[bot]" <90276125+hikari-bot[bot]@users.noreply.github.com> Date: Sun, 7 Apr 2024 18:54:51 +0000 Subject: [PATCH] Prepare for release of 2.0.0.dev124 (#1876) Co-authored-by: hikari-bot <90276125+hikari-bot[bot]@users.noreply.github.com> --- CHANGELOG.md | 17 +++++++++++++++++ changes/1866.bugfix.md | 1 - changes/1867.bugfix.md | 1 - changes/1870.feature.md | 1 - changes/1871.feature.md | 1 - changes/1874.documentation.md | 1 - hikari/_about.py | 2 +- 7 files changed, 18 insertions(+), 6 deletions(-) delete mode 100644 changes/1866.bugfix.md delete mode 100644 changes/1867.bugfix.md delete mode 100644 changes/1870.feature.md delete mode 100644 changes/1871.feature.md delete mode 100644 changes/1874.documentation.md diff --git a/CHANGELOG.md b/CHANGELOG.md index dbfacdef76..e50a6ea685 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## 2.0.0.dev124 (2024-04-07) + +### Features + +- Improve `Emoji.parse` typing to make it more explicit ([#1870](https://github.com/hikari-py/hikari/issues/1870)) +- Add ability to edit own user banner ([#1871](https://github.com/hikari-py/hikari/issues/1871)) + +### Bugfixes + +- Fix incorrectly formatted error strings ([#1866](https://github.com/hikari-py/hikari/issues/1866)) +- Properly handle initial opcode as being RECONNECT (7) ([#1867](https://github.com/hikari-py/hikari/issues/1867)) + +### Documentation Improvements + +- Replace mentions of `PRIVATE_MESSAGES` with `DM_MESSAGES` ([#1874](https://github.com/hikari-py/hikari/issues/1874)) + +--- ## 2.0.0.dev123 (2024-03-31) ### Breaking Changes diff --git a/changes/1866.bugfix.md b/changes/1866.bugfix.md deleted file mode 100644 index 60eaec5c96..0000000000 --- a/changes/1866.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix incorrectly formatted error strings diff --git a/changes/1867.bugfix.md b/changes/1867.bugfix.md deleted file mode 100644 index 1cefca8e18..0000000000 --- a/changes/1867.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Properly handle initial opcode as being RECONNECT (7) diff --git a/changes/1870.feature.md b/changes/1870.feature.md deleted file mode 100644 index 739c62dd21..0000000000 --- a/changes/1870.feature.md +++ /dev/null @@ -1 +0,0 @@ -Improve `Emoji.parse` typing to make it more explicit diff --git a/changes/1871.feature.md b/changes/1871.feature.md deleted file mode 100644 index 8f1e2d8955..0000000000 --- a/changes/1871.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add ability to edit own user banner diff --git a/changes/1874.documentation.md b/changes/1874.documentation.md deleted file mode 100644 index 57867cc68c..0000000000 --- a/changes/1874.documentation.md +++ /dev/null @@ -1 +0,0 @@ -Replace mentions of `PRIVATE_MESSAGES` with `DM_MESSAGES` diff --git a/hikari/_about.py b/hikari/_about.py index 9b42918c74..bf1cd05d9e 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.dev124" __email__: typing.Final[str] = "davfsa@gmail.com" __issue_tracker__: typing.Final[str] = "https://github.com/hikari-py/hikari/issues" __license__: typing.Final[str] = "MIT"