Skip to content

Commit 153080e

Browse files
authored
R5.37.0 (#6871)
1 parent 7453221 commit 153080e

File tree

4 files changed

+35
-17
lines changed

4 files changed

+35
-17
lines changed

changelogs/5.37.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# 5.37.0
2+
Released 28th October 2025.
3+
4+
This is a support release for Minecraft: Bedrock Edition 1.21.111.
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+
## Interim releases
13+
If you're upgrading from 5.35.x directly to 5.37.0, please also read the following changelogs, as the interim releases contain important changes:
14+
- [5.36.0](https://github.com/pmmp/PocketMine-MP/blob/5.37.0/changelogs/5.36.md) - user experience improvements, new gameplay features, new API additions and network changes
15+
16+
## General
17+
- Added support for Minecraft: Bedrock Edition 1.21.120 (@dries-c).
18+
- Removed support for earlier versions.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
"adhocore/json-comment": "~1.2.0",
3636
"netresearch/jsonmapper": "~v5.0.0",
3737
"pocketmine/bedrock-block-upgrade-schema": "~5.2.0+bedrock-1.21.110",
38-
"pocketmine/bedrock-data": "~6.1.0+bedrock-1.21.111",
38+
"pocketmine/bedrock-data": "~6.2.0+bedrock-1.21.120",
3939
"pocketmine/bedrock-item-upgrade-schema": "~1.16.0+bedrock-1.21.110",
40-
"pocketmine/bedrock-protocol": "~52.0.0+bedrock-1.21.111",
40+
"pocketmine/bedrock-protocol": "~53.0.0+bedrock-1.21.120",
4141
"pocketmine/binaryutils": "^0.2.1",
4242
"pocketmine/callback-validator": "^1.0.2",
4343
"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.36.1";
35-
public const IS_DEVELOPMENT_BUILD = true;
34+
public const BASE_VERSION = "5.37.0";
35+
public const IS_DEVELOPMENT_BUILD = false;
3636
public const BUILD_CHANNEL = "stable";
3737
public const GITHUB_URL = "https://github.com/pmmp/PocketMine-MP";
3838

0 commit comments

Comments
 (0)