Skip to content

Commit f3f22ba

Browse files
committed
Release 4.25.0
1 parent a2e6e2e commit f3f22ba

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

changelogs/4.25.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# 4.25.0
2+
Released 26th October 2023.
3+
4+
**For Minecraft: Bedrock Edition 1.20.40**
5+
6+
This is a support release for Minecraft: Bedrock Edition 1.20.40.
7+
8+
**Plugin compatibility:** Plugins for previous 4.x versions will run unchanged on this release, unless they use internal APIs, reflection, or packages like the `pocketmine\network\mcpe` namespace.
9+
Do not update plugin minimum API versions unless you need new features added in this release.
10+
11+
**WARNING: If your plugin uses the `pocketmine\network\mcpe` namespace, you're not shielded by API change constraints.**
12+
Consider using the `mcpe-protocol` directive in `plugin.yml` as a constraint if you're using packets directly.
13+
14+
## General
15+
- Added support for Minecraft: Bedrock Edition 1.20.40.
16+
- Removed support for older versions.

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 = "4.24.1";
35-
public const IS_DEVELOPMENT_BUILD = true;
34+
public const BASE_VERSION = "4.25.0";
35+
public const IS_DEVELOPMENT_BUILD = false;
3636
public const BUILD_CHANNEL = "stable";
3737

3838
private function __construct(){

0 commit comments

Comments
 (0)