From bd69c66d0379814fc9f98811707da500d130742a Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 12 Jul 2019 19:03:23 +0100 Subject: [PATCH] Release 3.9.0 --- changelogs/3.9.md | 12 ++++++++++++ src/pocketmine/VersionInfo.php | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 changelogs/3.9.md diff --git a/changelogs/3.9.md b/changelogs/3.9.md new file mode 100644 index 000000000..79605c8e9 --- /dev/null +++ b/changelogs/3.9.md @@ -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. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index dcec6b277..4b31e933f 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -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;