diff --git a/changelogs/4.3.md b/changelogs/4.3.md index b3e7bfbab..b5ebafe52 100644 --- a/changelogs/4.3.md +++ b/changelogs/4.3.md @@ -19,3 +19,14 @@ Released 23rd April 2022. ## Fixes - Updated BedrockProtocol dependency to fix incorrect command argument types. - Creative players no longer die in the void. + +# 4.3.2 +Released 10th May 2022. + +## Fixes +- Fixed an assertion failure in certain edge cases during world generation. +- Fixed `Entity::setNameTagVisible()` not immediately showing results to players already online. + +## Documentation +- Added more documentation in the template `pocketmine.yml` for the `aliases` config section. +- Removed useless doc comment in `PlayerChangeSkinEvent`. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 086171251..934b7ade2 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.3.2"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){