diff --git a/changelogs/3.22.md b/changelogs/3.22.md index 7d83b5a0d..9122076b2 100644 --- a/changelogs/3.22.md +++ b/changelogs/3.22.md @@ -18,3 +18,9 @@ Plugin developers should **only** update their required API to this version if y - Improved the documentation for `Player->getUniqueId()`. - Fixed a mistake in the documentation of `PlayerAuthInputFlags`. - Fixed incorrect encoding of `NpcDialoguePacket`. + +# 3.22.2 +- PHP 8.0 is now the primary supported version. PHP 7.4 is still supported for now, but it will be dropped in the coming weeks. It's recommended to start testing your servers on 8.0 now so you're ready. +- Fixed items in the crafting grid getting deleted on server-side disconnect or session timeout. +- A warning is now logged on startup if a debug build of PHP is used to run the server (because it has a significant performance impact). +- GitHub Actions is now used to build new releases, instead of Jenkins. You can see build logs [here](https://github.com/pmmp/PocketMine-MP/actions/workflows/draft-release.yml). diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index 7b51d1917..1c6929b93 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -34,6 +34,6 @@ const _VERSION_INFO_INCLUDED = true; const NAME = "PocketMine-MP"; const BASE_VERSION = "3.22.2"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0; -const BUILD_CHANNEL = ""; +const BUILD_CHANNEL = "stable";