From d27c7f714184fe5c9c4b96319c2f62c7f7b96b21 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 6 Dec 2019 20:53:15 +0000 Subject: [PATCH] Release 3.10.0 --- changelogs/3.10.md | 16 ++++++++++++++++ src/pocketmine/VersionInfo.php | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 changelogs/3.10.md diff --git a/changelogs/3.10.md b/changelogs/3.10.md new file mode 100644 index 000000000..90e8e93f5 --- /dev/null +++ b/changelogs/3.10.md @@ -0,0 +1,16 @@ +**For Minecraft: Bedrock Edition 1.13.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.10.0 +- Added support for Minecraft: Bedrock Edition 1.13.0 +- Removed compatibility with 1.12.0 + +## Note about skins +PocketMine-MP **does not support skins made in the Charactor Creator** (known as Persona skins), due to technical changes which would require premature backwards compatibility breaks. The dev team has decided not to support Persona yet. +These skins will be **replaced with a random solid-colour skin. This is not a bug.** +Skins chosen from the Classic tab (classic skins) will continue to work as normal. \ No newline at end of file diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index 22397a4a0..4512c3d0f 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -30,6 +30,6 @@ const _VERSION_INFO_INCLUDED = true; const NAME = "PocketMine-MP"; -const BASE_VERSION = "3.9.8"; +const BASE_VERSION = "3.10.0"; const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;