From 702816458c11f799f24ff5504aa68272889b4ab2 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 5 Jun 2022 16:15:34 +0100 Subject: [PATCH] Release 4.4.1 --- changelogs/4.4.md | 12 ++++++++++++ src/VersionInfo.php | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/changelogs/4.4.md b/changelogs/4.4.md index 070520d60..124bd44b0 100644 --- a/changelogs/4.4.md +++ b/changelogs/4.4.md @@ -75,3 +75,15 @@ Released 1st June 2022. - Added unit tests for the quote-aware command parser used by `SimpleCommandMap`. - Various hardcoded values in `block` package classes have been moved to private constants to improve readability. - Added various constants used in the `LevelDB` world provider. + +# 4.4.1 +Released 5th June 2022. + +## General +- The server process will now exit with an error code if plugins, worlds or network interfaces failed to start. + +## Fixes +- Fixed graylisted plugins preventing the server from starting. +- Fixed `composer make-server` command. +- Fixed the `Maximum memory (manager)` units being incorrectly displayed in `/status`. +- Fixed `Player->removeCurrentWindow()` breaking inventory windows. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 4a5a3b369..f779f4f35 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -32,7 +32,7 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; public const BASE_VERSION = "4.4.1"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){