From 9abbb85a93a146ffb58347ae4b48c61a5ccf8383 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sat, 6 Aug 2022 15:35:47 +0100 Subject: [PATCH] Release 4.6.2 --- changelogs/4.6.md | 11 +++++++++++ src/VersionInfo.php | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/changelogs/4.6.md b/changelogs/4.6.md index e32098da6..82fc1af8f 100644 --- a/changelogs/4.6.md +++ b/changelogs/4.6.md @@ -29,3 +29,14 @@ Released 22nd July 2022. - Fixed incorrect fire ticks when being set on fire by lava (8 seconds in Bedrock instead of 15). - `Entity->attack()` now cancels damage from `FIRE` and `FIRE_TICK` damage causes if the entity is fireproof. - Fixed inventory windows getting force-closed when the client attempts to use an enchanting table or anvil. + +# 4.6.2 +Released 6th August 2022. + +## Core +- Improved server-side performance of `PlayerAuthInputPacket` handler. +- Improved client-side performance of `FloatingTextParticle` by using an invisible falling block entity. This offered a roughly 5x performance improvement over using tiny invisible players in local testing. + +## Fixes +- Fixed assert failures and debug spam on debug Minecraft clients related to abilities in `AddPlayerPacket`. +- Fixed crash in `ReversePriorityQueue` on PHP 8.1 by adding `#[ReturnTypeWillChange]` attribute. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 1be7896ff..a83207968 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -32,7 +32,7 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; public const BASE_VERSION = "4.6.2"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){