Skip to content

Commit 50e15db

Browse files
authored
Prepare 5.31.0 release (#6752)
1 parent f1f6e79 commit 50e15db

File tree

5 files changed

+32
-17
lines changed

5 files changed

+32
-17
lines changed

changelogs/5.31.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# 5.31.0
2+
Released 8th July 2025.
3+
4+
This is a support release for Minecraft: Bedrock Edition 1.21.93.
5+
6+
**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.
7+
Do not update plugin minimum API versions unless you need new features added in this release.
8+
9+
**WARNING: If your plugin uses the `pocketmine\network\mcpe` namespace, you're not shielded by API change constraints.**
10+
Consider using the `mcpe-protocol` directive in `plugin.yml` as a constraint if you're using packets directly.
11+
12+
## General
13+
- Added support for Minecraft: Bedrock Edition 1.21.93.
14+
- Removed support for earlier versions.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
"adhocore/json-comment": "~1.2.0",
3535
"netresearch/jsonmapper": "~v5.0.0",
3636
"pocketmine/bedrock-block-upgrade-schema": "~5.1.0+bedrock-1.21.60",
37-
"pocketmine/bedrock-data": "~5.1.0+bedrock-1.21.90",
37+
"pocketmine/bedrock-data": "~5.2.0+bedrock-1.21.93",
3838
"pocketmine/bedrock-item-upgrade-schema": "~1.14.0+bedrock-1.21.50",
39-
"pocketmine/bedrock-protocol": "~39.0.0+bedrock-1.21.90",
39+
"pocketmine/bedrock-protocol": "~39.1.0+bedrock-1.21.93",
4040
"pocketmine/binaryutils": "^0.2.1",
4141
"pocketmine/callback-validator": "^1.0.2",
4242
"pocketmine/color": "^0.3.0",

composer.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/VersionInfo.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131

3232
final class VersionInfo{
3333
public const NAME = "PocketMine-MP";
34-
public const BASE_VERSION = "5.30.2";
35-
public const IS_DEVELOPMENT_BUILD = true;
34+
public const BASE_VERSION = "5.31.0";
35+
public const IS_DEVELOPMENT_BUILD = false;
3636
public const BUILD_CHANNEL = "stable";
3737

3838
/**

src/data/bedrock/item/ItemTypeNames.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,7 @@ final class ItemTypeNames{
372372
public const MUSIC_DISC_CREATOR = "minecraft:music_disc_creator";
373373
public const MUSIC_DISC_CREATOR_MUSIC_BOX = "minecraft:music_disc_creator_music_box";
374374
public const MUSIC_DISC_FAR = "minecraft:music_disc_far";
375+
public const MUSIC_DISC_LAVA_CHICKEN = "minecraft:music_disc_lava_chicken";
375376
public const MUSIC_DISC_MALL = "minecraft:music_disc_mall";
376377
public const MUSIC_DISC_MELLOHI = "minecraft:music_disc_mellohi";
377378
public const MUSIC_DISC_OTHERSIDE = "minecraft:music_disc_otherside";

0 commit comments

Comments
 (0)