Compare commits

..

4 Commits

4 changed files with 6 additions and 2 deletions

View File

@ -68,7 +68,7 @@ jobs:
done
- name: Build PocketMine-MP.phar
run: php build/server-phar.php --git ${{ github.sha }}
run: php -dphar.readonly=0 build/server-phar.php --git ${{ github.sha }}
- name: Get PocketMine-MP release version
id: get-pm-version

View File

@ -81,6 +81,7 @@ function main(array $argv) : void{
$currentVer->getPatch() + 1
));
echo "About to tag version $currentVer. Next version will be $nextVer.\n";
echo "please add appropriate notes to the changelog and press enter...";
fgets(STDIN);
system('git add "' . dirname(__DIR__) . '/changelogs"');

View File

@ -28,3 +28,6 @@ Plugin developers should **only** update their required API to this version if y
# 3.22.3
- Fixed a bug in the release build of 3.22.2 which caused the crash archive to reject all crashdumps.
- Fixed possible server crash during player spawning.
# 3.22.4
- Fixed a bug which broke the build of 3.22.3.

View File

@ -33,7 +33,7 @@ if(defined('pocketmine\_VERSION_INFO_INCLUDED')){
const _VERSION_INFO_INCLUDED = true;
const NAME = "PocketMine-MP";
const BASE_VERSION = "3.22.3";
const BASE_VERSION = "3.22.4";
const IS_DEVELOPMENT_BUILD = false;
const BUILD_NUMBER = 0;
const BUILD_CHANNEL = "stable";