From 00286e761c7461aa64950efa23f6492d29ea7e84 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 22 Mar 2023 22:35:24 +0000 Subject: [PATCH] Release 4.17.1 --- changelogs/4.17.md | 21 ++++++++++++++++++++- src/VersionInfo.php | 2 +- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/changelogs/4.17.md b/changelogs/4.17.md index d35cc77d9..58669cc25 100644 --- a/changelogs/4.17.md +++ b/changelogs/4.17.md @@ -11,4 +11,23 @@ Released 14th March 2023. ## General - Added support for Minecraft: Bedrock Edition 1.19.70. -- Removed support for older versions. \ No newline at end of file +- Removed support for older versions. + +# 4.17.1 +Released 22nd March 2023. + +## General +- Docker images for PocketMine-MP are now published on [GitHub Container Registry](https://github.com/pmmp/PocketMine-MP/pkgs/container/pocketmine-mp). The Docker Hub images will stop being maintained in the future. +- Updated translations. + +## Fixes +- Fixed server crash on empty packets in certain cases. +- Fixed mushroom blocks dropping the wrong items when broken with a silk-touch tool. +- Fixed mushroom blocks giving the wrong items when block-picked. +- Fixed missing ability flag `PRIVILEGED_BUILDER`. + +## Internals +- `update-updater-api.yml` workflow now uses `github.repository_owner` to make it easier to test the workflow on forks. +- Added version-specific channels to `update.pmmp.io`, such as `4`, `4.18-beta`, `4.17`, etc. +- Replaced deprecated `::set-output` commands in GitHub Actions workflows. +- `build/make-release.php` no longer automatically pushes changes, to avoid accidents when testing release workflows on forks. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 880fda698..0a9abc9f8 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -32,7 +32,7 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; public const BASE_VERSION = "4.17.1"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){