From 19d7c2b552efd17d5416c6e9ded9f15da8c65bad Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 14 Aug 2022 19:55:56 +0100 Subject: [PATCH 1/3] Release 4.7.1 --- changelogs/4.7.md | 9 +++++++++ src/VersionInfo.php | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/changelogs/4.7.md b/changelogs/4.7.md index b450f7cf4..22fbe9ecc 100644 --- a/changelogs/4.7.md +++ b/changelogs/4.7.md @@ -12,3 +12,12 @@ Released 9th August 2022. ## General - Added support for Minecraft: Bedrock Edition 1.19.20. - Removed support for older versions. + +# 4.7.1 +Released 14th August 2022. + +## Fixes +- Fixed server crash when loading items from disk which have negative meta values. +- Fixed Turtle Master potions not giving any effects. +- Unimplemented items are no longer craftable. +- Fixed incorrect items appearing in item frames (due to an obsolete workaround for 1.19.10). diff --git a/src/VersionInfo.php b/src/VersionInfo.php index af0b03be2..6d4f40a3c 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.7.1"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){ From d62df585f26a0a4bb344fab0ffc07ae43e3a7dbd Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 14 Aug 2022 19:56:00 +0100 Subject: [PATCH 2/3] 4.7.2 is next --- src/VersionInfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 6d4f40a3c..e928de38c 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -31,8 +31,8 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; - public const BASE_VERSION = "4.7.1"; - public const IS_DEVELOPMENT_BUILD = false; + public const BASE_VERSION = "4.7.2"; + public const IS_DEVELOPMENT_BUILD = true; public const BUILD_CHANNEL = "stable"; private function __construct(){ From c5b2488fc1f46c34f4fe3554693e2a5ecebc8a88 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 14 Aug 2022 20:02:07 +0100 Subject: [PATCH 3/3] oh come on... --- .github/workflows/discord-release-notify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/discord-release-notify.yml b/.github/workflows/discord-release-notify.yml index 210f5c0d9..8adc0f4dd 100644 --- a/.github/workflows/discord-release-notify.yml +++ b/.github/workflows/discord-release-notify.yml @@ -35,4 +35,4 @@ jobs: run: echo ::set-output name=TAG_NAME::$(echo "${{ github.ref }}" | sed 's{^refs/tags/{{') - name: Run webhook post script - run: php .github/workflows/discord-release-embed.php ${{ github.repo }} ${{ steps.tag-name.outputs.TAG_NAME }} ${{ github.token }} ${{ secrets.DISCORD_RELEASE_WEBHOOK }} + run: php .github/workflows/discord-release-embed.php ${{ github.repository }} ${{ steps.tag-name.outputs.TAG_NAME }} ${{ github.token }} ${{ secrets.DISCORD_RELEASE_WEBHOOK }}