From f0539f48983a3961290f2a4b9828586cc11b0008 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Tue, 1 Oct 2019 15:02:33 +0100 Subject: [PATCH] Release 3.9.5 --- 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 8e2591f720..9e91d7c040 100644 --- a/changelogs/3.9.md +++ b/changelogs/3.9.md @@ -69,3 +69,8 @@ Plugin developers should **only** update their required API to this version if y - `Entity->despawnFromAll()` - Fixed plugin `softdepend` not influencing load order when a soft-depended plugin had an unresolved soft dependency of its own. - Fixed endless falling of sand on top of fences. + +# 3.9.5 +- Fixed some issues with multiple consecutive commas inside quotes in form responses. +- Fixed server crash when the manifest json does not contain a json object in a resource pack. +- Ender pearls no longer collide with blocks that do not have any collision boxes. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index d87f84ae45..c4144ea550 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.5"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;