From 3a0c8dd5942c5e479a1a46421a6a6bcf31a2da84 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Tue, 16 Feb 2021 22:13:05 +0000 Subject: [PATCH] Release 3.17.5 --- changelogs/3.17.md | 7 +++++++ src/pocketmine/VersionInfo.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/changelogs/3.17.md b/changelogs/3.17.md index 6c78eaafe..8888583a7 100644 --- a/changelogs/3.17.md +++ b/changelogs/3.17.md @@ -41,3 +41,10 @@ Plugin developers should **only** update their required API to this version if y - `CraftItemEvent->getOutputs()` now returns a list starting at offset 0, instead of random offsets. (Note that the contents still won't be ordered.) - Fixed a bug that broke synchronized building, bridging, towering and more. - Objects in memory dumps no longer show inherited properties multiple times. + +# 3.17.5 +- Reduced CPU wastage by the logger thread. +- Fixed LevelDB deprecation errors on PHP 8.0. +- Added some protocol changes for 1.16.200 which were previously overlooked. +- Player XUIDs are now tracked. If a player's XUID does not match the previously recorded XUID when they next join the server, they will be kicked. This can be disabled by the `player.verify-xuid` setting in `pocketmine.yml`. +- `BUILDING.md` now has a note about `build/server-phar.php`'s compression bug (a bug in PHP). diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index feef147d9..d79c5d1cc 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.17.5"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;