From 23f4632409847e040a70572852f540cda2f31304 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 13 Mar 2024 13:48:56 +0000 Subject: [PATCH] Release 5.12.1 --- changelogs/5.12.md | 9 +++++++++ src/VersionInfo.php | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/changelogs/5.12.md b/changelogs/5.12.md index f1857efa4e9..a23f83e56d4 100644 --- a/changelogs/5.12.md +++ b/changelogs/5.12.md @@ -52,3 +52,12 @@ Consider using the `mcpe-protocol` directive in `plugin.yml` as a constraint if - Authentication system no longer accepts logins signed with the old Mojang root public key. - ID to enum mappings in `pocketmine\data` now use a new `match` convention to allow static analysis to ensure that all enum cases are handled. - Updated version of `pocketmine/bedrock-protocol` allows avoiding decoding of some itemstack data from the client in most cases, improving performance. + +# 5.12.1 +Released 13th March 2024. + +## Fixes +- Fixed `Player Network Receive - Decompression` timings not being stopped correctly when receiving an uncompressed packet. + +## Internals +- Removed hardcoded batch packet size limit. This was already covered by other limits anyway. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 794ed17d71a..050ade5fa25 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -32,7 +32,7 @@ final class VersionInfo{ public const NAME = "PocketMine-MP"; public const BASE_VERSION = "5.12.1"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; /**