From 338bb3fe6d70f093fc8dc01d1d3c3b4b3656fcf8 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 20 Sep 2023 19:00:51 +0100 Subject: [PATCH] Release 5.6.0 --- changelogs/5.6.md | 20 ++++++++++++++++++++ src/VersionInfo.php | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 changelogs/5.6.md diff --git a/changelogs/5.6.md b/changelogs/5.6.md new file mode 100644 index 00000000000..d4914f527ff --- /dev/null +++ b/changelogs/5.6.md @@ -0,0 +1,20 @@ +# 5.6.0 +Released 20th September 2023. + +**For Minecraft: Bedrock Edition 1.20.30** + +This is a support release for Minecraft: Bedrock Edition 1.20.30. + +**Plugin compatibility:** Plugins for previous 5.x versions will run unchanged on this release, unless they use internal APIs, reflection, or packages like the `pocketmine\network\mcpe` or `pocketmine\data` namespace. +Do not update plugin minimum API versions unless you need new features added in this release. + +**WARNING: If your plugin uses the `pocketmine\network\mcpe` namespace, you're not shielded by API change constraints.** +Consider using the `mcpe-protocol` directive in `plugin.yml` as a constraint if you're using packets directly. + +## General +- Added support for Minecraft: Bedrock Edition 1.20.30. +- Removed support for older versions. + +## Fixes +- Fixed support conditions for hanging roots, cave vines and dead bushes. +- Fixed connection conditions for fences, glass panes, iron bars, and walls. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 18f03233dbe..482c55e0238 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -31,8 +31,8 @@ final class VersionInfo{ public const NAME = "PocketMine-MP"; - public const BASE_VERSION = "5.5.1"; - public const IS_DEVELOPMENT_BUILD = true; + public const BASE_VERSION = "5.6.0"; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; /**