Skip to content

Commit 37bf4bc

Browse files
committed
Release 5.17.0
1 parent 5d60ba3 commit 37bf4bc

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

changelogs/5.17.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# 5.17.0
2+
Released 10th July 2024.
3+
4+
**For Minecraft: Bedrock Edition 1.21.2**
5+
6+
This is a support release for Minecraft: Bedrock Edition 1.21.2.
7+
8+
**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.
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.21.2.
16+
- Removed support for earlier versions.
17+
18+
## API
19+
### `pocketmine\player`
20+
- The following methods have been added:
21+
- `public function closeAllForms() : void` - closes the current viewing form and forms in queue.
22+
23+
## Fixes
24+
- Bowl can now be used as fuel.
25+
- Bells always drops themselves even when using an incompatible tool.

src/VersionInfo.php

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

3838
/**

0 commit comments

Comments
 (0)