Skip to content

Commit c537f21

Browse files
authored
Prepare 5.35.1 release (#6850)
1 parent 806d88e commit c537f21

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

changelogs/5.35.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,19 @@ Please also note that an updated PHP binary is required due to changes introduce
1919
## General
2020
- Added support for Minecraft: Bedrock Edition 1.21.111 (@dries-c).
2121
- Removed support for earlier versions.
22+
23+
# 5.35.1
24+
Released 20th October 2025.
25+
26+
## Fixes
27+
- Fixed crash when using an almost-broken trident. (@dktapps)
28+
- Fixed AABBs of squid, zombies and villagers not matching Bedrock. (@Wraith0x10).
29+
- Fixed `StringToItemParser->override()` not updating results of `lookupAliases()`. (@dktapps, @RenzMc)
30+
- Fixed players' on-ground state not updating correctly when noclip is enabled outside of Spectator mode. (@dktapps)
31+
32+
## Documentation
33+
- Added guidelines against copy-pasting AI code in `CONTRIBUTING.md`. (@dktapps)
34+
- Simplified various parts of `CONTRIBUTING.md` to make it more readable. (@dktapps)
35+
36+
## Internals
37+
- `PrepareEncryptionTask` now checks the validity of the provided client public key in the constructor. This ensures earlier error reporting when used incorrectly. Previously it would crash during the `AsyncTask`, preventing the source of the error from being traced. (@dktapps)

src/VersionInfo.php

Lines changed: 1 addition & 1 deletion
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.35.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)