Skip to content

Commit 23f4632

Browse files
committed
Release 5.12.1
1 parent 264ce06 commit 23f4632

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

changelogs/5.12.md

+9
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,12 @@ Consider using the `mcpe-protocol` directive in `plugin.yml` as a constraint if
5252
- Authentication system no longer accepts logins signed with the old Mojang root public key.
5353
- ID to enum mappings in `pocketmine\data` now use a new `match` convention to allow static analysis to ensure that all enum cases are handled.
5454
- Updated version of `pocketmine/bedrock-protocol` allows avoiding decoding of some itemstack data from the client in most cases, improving performance.
55+
56+
# 5.12.1
57+
Released 13th March 2024.
58+
59+
## Fixes
60+
- Fixed `Player Network Receive - Decompression` timings not being stopped correctly when receiving an uncompressed packet.
61+
62+
## Internals
63+
- Removed hardcoded batch packet size limit. This was already covered by other limits anyway.

src/VersionInfo.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
final class VersionInfo{
3333
public const NAME = "PocketMine-MP";
3434
public const BASE_VERSION = "5.12.1";
35-
public const IS_DEVELOPMENT_BUILD = true;
35+
public const IS_DEVELOPMENT_BUILD = false;
3636
public const BUILD_CHANNEL = "stable";
3737

3838
/**

0 commit comments

Comments
 (0)