diff --git a/changelogs/3.25.md b/changelogs/3.25.md index 2520f5952..de3d613e5 100644 --- a/changelogs/3.25.md +++ b/changelogs/3.25.md @@ -28,3 +28,8 @@ Plugin developers should **only** update their required API to this version if y # 3.25.4 - Fixed a long-standing issue with `Player->removeWindow()` breaking inventory UIs on the client. + +# 3.25.5 +- Protocol: Fixed incorrect encoding in `StructureSettings` +- Fixed reading tags from non-docblock comments in script plugins. +- Build number is now defined in phar metadata instead of being patched into the source code directly. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index 7c6ecba82..8f27e6f53 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -34,5 +34,5 @@ const _VERSION_INFO_INCLUDED = true; const NAME = "PocketMine-MP"; const BASE_VERSION = "3.25.5"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_CHANNEL = "stable";