diff --git a/changelogs/4.4.md b/changelogs/4.4.md index 58ccf83a1..f1efa0ccd 100644 --- a/changelogs/4.4.md +++ b/changelogs/4.4.md @@ -87,3 +87,11 @@ Released 5th June 2022. - Fixed `composer make-devtools` command. - Fixed the `Maximum memory (manager)` units being incorrectly displayed in `/status`. - Fixed `Player->removeCurrentWindow()` breaking inventory windows. + +# 4.4.2 +Released 7th June 2022. + +## Fixes +- Fixed a crash when arbitrary item IDs appeared in network items in some cases. +- Fixed saved paintings being deleted when loaded from disk (regression from 4.3.4). +- Fixed max stack size of fishing rods. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index a8705becd..d7e9b7860 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.2"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){