diff --git a/changelogs/5.33.md b/changelogs/5.33.md index fe2e15a07..65ff6620d 100644 --- a/changelogs/5.33.md +++ b/changelogs/5.33.md @@ -133,3 +133,15 @@ Released 31st August 2025. ## Fixes - Fixed banners placed in prior versions getting their tiles deleted (due to missing `Type` tags). + +# 5.33.2 +Released 16th September 2025. + +## General +- PHP 8.4 has now been added to the test matrix. + +## Fixes +- Fixed PHP 8.4 deprecation notice in `AsyncGeneratorExecutor`. +- Fixed inventory windows breaking if a window is sent while the player has the chat window open (e.g. quickly pressing E followed by / could trigger this). +- Fixed `BlockBreakEvent` being called twice in creative if cancelled. +- Reduced block lag when towering and other situations where the placed block might intersect with the player's AABB. Block lag may still appear on higher latency clients - this is still being worked on. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 855e78aaa..5f457cfc1 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 = "5.33.2"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; /**