From 18a1bfe4dd425895a14c82d6633fbf567feeb30c Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 29 Jul 2019 17:27:21 +0100 Subject: [PATCH] Release 3.9.3 --- changelogs/3.9.md | 5 +++++ src/pocketmine/VersionInfo.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelogs/3.9.md b/changelogs/3.9.md index 2f35ab897..9e3e86b75 100644 --- a/changelogs/3.9.md +++ b/changelogs/3.9.md @@ -52,3 +52,8 @@ Plugin developers should **only** update their required API to this version if y - Fixed `Item->setCustomName()` with an empty string leaving behind an empty tag. - Fixed incorrect positioning of bucket empty sound. - Fixed some incorrect tag parsing in `/give` involving quoted numbers. + +# 3.9.3 +- Fixed a memory leak on async task removal in error conditions. +- Fixed scheduled block updates (for example liquid) triggering chunk reloading. This could cause a significant performance issue in some conditions. +- Fixed some minor cosmetic issues in documentation. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index d7ae20990..403624794 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -23,5 +23,5 @@ namespace pocketmine; const NAME = "PocketMine-MP"; const BASE_VERSION = "3.9.3"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;