From 14e7d3e143b2baf4aa6595e368c7900cb3687d13 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sat, 4 Mar 2023 16:19:34 +0000 Subject: [PATCH] Release 4.16.0-BETA2 --- changelogs/4.16-beta.md | 8 ++++++++ src/VersionInfo.php | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/changelogs/4.16-beta.md b/changelogs/4.16-beta.md index 1ffc0f930..ba6847286 100644 --- a/changelogs/4.16-beta.md +++ b/changelogs/4.16-beta.md @@ -7,6 +7,8 @@ Plugin developers should **only** update their required API to this version if y **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. # 4.16.0-BETA1 +Released 4th March 2023. + ## General - Added granular timings for packet encode, similar to the existing timings for packet decode. - Timings now covers several areas of the network system which were previously not counted by network timings, but were counted by total timings. This provides a better insight into the performance of the network system. @@ -35,3 +37,9 @@ Plugin developers should **only** update their required API to this version if y - Reduced and/or eliminated most usages of `PacketBatch`, since it only appeared as a throwaway object and was therefore wasting performance. - `Compressor` now exposes `getCompressionThreshold()` instead of `willCompress()`, which allows determining whether a batch will be compressed without allocating it. - Added `pocketmine\data\bedrock\BedrockDataFiles`, an auto-generated class of constants with the file paths of all BedrockData files. This makes it easier to locate usages, detect unused files and avoid typos. + +# 4.16.0-BETA2 +Released 4th March 2023. + +## General +- Fixed incorrect release channel for 4.16.0-BETA1. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 18caedbc3..2479e7be7 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -32,8 +32,8 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; public const BASE_VERSION = "4.16.0-BETA2"; - public const IS_DEVELOPMENT_BUILD = true; - public const BUILD_CHANNEL = "stable"; + public const IS_DEVELOPMENT_BUILD = false; + public const BUILD_CHANNEL = "beta"; private function __construct(){ //NOOP