Release 3.9.0

This commit is contained in:
Dylan K. Taylor 2019-07-12 19:03:23 +01:00
parent c58a1bf9b7
commit bd69c66d03
2 changed files with 13 additions and 1 deletions

12
changelogs/3.9.md Normal file
View File

@ -0,0 +1,12 @@
**For Minecraft: Bedrock Edition 1.12.0**
### Note about API versions
Plugins which don't touch the protocol and compatible with any previous 3.x.y version will also run on these releases and do not need API bumps.
Plugin developers should **only** update their required API to this version if you need the changes in this build.
**WARNING: If your plugin uses the protocol, you're not shielded by API change constraints.** You should consider using the `mcpe-protocol` directive in `plugin.yml` as a constraint if you do.
# 3.9.0
- Added support for Minecraft: Bedrock Edition 1.12.0
- Removed compatibility with 1.11.0
- All packets pertaining to `Entity`s have been renamed to their appropriate `Actor` names to resolve conflicts with new packets.

View File

@ -22,6 +22,6 @@
namespace pocketmine;
const NAME = "PocketMine-MP";
const BASE_VERSION = "3.8.7";
const BASE_VERSION = "3.9.0";
const IS_DEVELOPMENT_BUILD = false;
const BUILD_NUMBER = 0;