Release 4.0.0-BETA3

This commit is contained in:
Dylan K. Taylor 2021-09-23 21:51:23 +01:00
parent 5f1e66478b
commit 9bc07a9cc0
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D
2 changed files with 5 additions and 2 deletions

View File

@ -1315,6 +1315,8 @@ Released 10th September 2021.
## General
- Added support for Minecraft: Bedrock Edition 1.17.30.
- Dropped support for Minecraft: Bedrock Edition 1.17.1x.
- `tools/convert-world.php` now writes errors to stderr and sets the proper exit code.
- Explosions now use the standard mechanism for processing block updates. Previously, it used a special mechanism due to prohibitively poor efficiency of the standard algorithm. Since these inefficiencies have now been addressed, explosions can now be consistent with everything else, with minimal performance impact.
- Command usage strings are no longer automatically translated (use `Translatable` instead of bare string keys).
@ -1323,6 +1325,7 @@ Released 10th September 2021.
## Fixes
- `ItemFactory->isRegistered()` no longer crashes when given negative item IDs.
- Furnaces now continue to operate after reloading the chunk they were contained in.
- Fixed being unable to reconnect for 10 seconds after disconnecting in some cases.
## API changes
- The following API methods have been added:

View File

@ -30,9 +30,9 @@ use function str_repeat;
final class VersionInfo{
public const NAME = "PocketMine-MP";
public const BASE_VERSION = "4.0.0-BETA3";
public const IS_DEVELOPMENT_BUILD = true;
public const IS_DEVELOPMENT_BUILD = false;
public const BUILD_NUMBER = 0;
public const BUILD_CHANNEL = "";
public const BUILD_CHANNEL = "beta";
private function __construct(){
//NOOP