From 9477034a4ae58cc5c12b8278c14a8e46a43992b2 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 23 Jul 2021 13:03:27 +0100 Subject: [PATCH] Release 3.22.1 --- changelogs/3.22.md | 9 +++++++++ src/pocketmine/VersionInfo.php | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/changelogs/3.22.md b/changelogs/3.22.md index 31e7c4c25..7d83b5a0d 100644 --- a/changelogs/3.22.md +++ b/changelogs/3.22.md @@ -9,3 +9,12 @@ Plugin developers should **only** update their required API to this version if y # 3.22.0 - Added support for Minecraft: Bedrock Edition 1.17.10. - Removed compatibility with earlier versions. + +# 3.22.1 +- Added a giant yellow startup warning if using OPcache JIT on PHP 8.0. JIT is currently considered highly unstable and not recommended for production use. +- When using a bad PHP binary, the bootstrap will now report the used `php.ini` path. This can be useful for debugging issues with extension loading when the wrong `php.ini` file is loaded for some reason. +- Fixed `start.cmd` causing the wrong `php.ini` to be loaded on Windows when a global PHP installation is used. +- A debug message is now logged containing expected vs. actual XUID of players when an XUID mismatch is detected. +- Improved the documentation for `Player->getUniqueId()`. +- Fixed a mistake in the documentation of `PlayerAuthInputFlags`. +- Fixed incorrect encoding of `NpcDialoguePacket`. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index 7c3a81c86..e476a57ee 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -34,5 +34,5 @@ const _VERSION_INFO_INCLUDED = true; const NAME = "PocketMine-MP"; const BASE_VERSION = "3.22.1"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;