From 9d4c37fc3ab28b0ef2097c4044e45543d0065095 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 21 Aug 2023 18:26:47 +0100 Subject: [PATCH 1/2] Release 4.23.6 --- changelogs/4.23.md | 6 ++++++ src/VersionInfo.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/changelogs/4.23.md b/changelogs/4.23.md index 750261e4b..317b6b458 100644 --- a/changelogs/4.23.md +++ b/changelogs/4.23.md @@ -60,3 +60,9 @@ Released 9th August 2023. - Fixed `PluginBase->saveResource()` leaking file resources when the data file already exists in the plugin's data folder. This bug existed since 2014 and was only discovered recently. - Fixed coral blocks becoming dead after calling `getDropsForCompatibleTool()` on them. - Fixed `BlockDeathEvent->getOldState()` returning a block which is already dead. + +# 4.23.6 +Released 21st August 2023. + +## Fixes +- Added a workaround for armor and other inventories not working correctly after inventory sync. This is caused by a client bug. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index efcfdaaf1..a2ff7cf93 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.23.6"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){ From 7aaef8cb89cddf1c01438d92c4f1aeb24b97297c Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 21 Aug 2023 18:26:50 +0100 Subject: [PATCH 2/2] 4.23.7 is next --- src/VersionInfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/VersionInfo.php b/src/VersionInfo.php index a2ff7cf93..905c16824 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -31,8 +31,8 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; - public const BASE_VERSION = "4.23.6"; - public const IS_DEVELOPMENT_BUILD = false; + public const BASE_VERSION = "4.23.7"; + public const IS_DEVELOPMENT_BUILD = true; public const BUILD_CHANNEL = "stable"; private function __construct(){