From a8d5e8c5f6dc33dc697213de60694590b263ff44 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 29 Oct 2021 22:23:22 +0100 Subject: [PATCH] Release 3.25.1 --- changelogs/3.25.md | 5 +++++ src/pocketmine/VersionInfo.php | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelogs/3.25.md b/changelogs/3.25.md index 8c66ff9f3..360729e3c 100644 --- a/changelogs/3.25.md +++ b/changelogs/3.25.md @@ -9,3 +9,8 @@ Plugin developers should **only** update their required API to this version if y # 3.25.0 - Added support for Minecraft: Bedrock Edition 1.17.40. - Removed compatibility with earlier versions. + +# 3.25.1 +- Fixed autosave bug that caused unmodified chunks to be saved at least once (during the first autosave after they were loaded). +- `Entity->spawnTo()` now has an additional sanity check for matching worlds (might expose a few new errors in plugins). +- Fixed a missing field in `CraftRecipeAuto` item stack request type. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index 82af4e6ce..534fb4d72 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -34,6 +34,6 @@ const _VERSION_INFO_INCLUDED = true; const NAME = "PocketMine-MP"; const BASE_VERSION = "3.25.1"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0; -const BUILD_CHANNEL = ""; +const BUILD_CHANNEL = "stable";