diff --git a/changelogs/3.16.md b/changelogs/3.16.md index 717f07acb..60d4749e4 100644 --- a/changelogs/3.16.md +++ b/changelogs/3.16.md @@ -16,3 +16,9 @@ Plugin developers should **only** update their required API to this version if y - Pumpkin and melon stems may not connect to their corresponding pumpkin/melon - New blocks, items & mobs aren't implemented - Nether doesn't exist + +# 3.16.1 +- Fixed incorrect encoding of skins in the protocol. +- `/version` no longer crashes when a plugin provides `string[]` for the `author` field in `plugin.yml`. +- `author` in `plugin.yml` now accepts arrays, just like `authors`. +- Fixed `HellBiome` never being registered. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index c8a2da70f..743270fd2 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -34,5 +34,5 @@ const _VERSION_INFO_INCLUDED = true; const NAME = "PocketMine-MP"; const BASE_VERSION = "3.16.1"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;