From 6af2d1f4a5008f4161648f8067f310a0f1650d53 Mon Sep 17 00:00:00 2001 From: desrosj Date: Wed, 7 Oct 2020 13:10:05 +0000 Subject: [PATCH] Build/Test Tools: Add NPM script for using the Composer installed version of PHPUnit. The `test:php` NPM script runs the PHP test suite using the system installed version of PHPUnit. In some cases, the version of PHPUnit installed through Composer may be preferred. Currently, this is true when running the test suite using PHP 8. In order to add support for PHP 8 while maintaining compatibility for PHP 5.6.20, PHPUnit 7.x must be used. But, some modifications are required to be compatible with PHP 8 (see [49037], [48957]). This change introduces the `test:php-composer` NPM script, which will run the test suite using the composer installed version. Props desrosj, SergeyBiryukov. Fixes #51456. Built from https://develop.svn.wordpress.org/trunk@49099 git-svn-id: http://core.svn.wordpress.org/trunk@48861 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 717def55e8..8e390376ac 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-49098'; +$wp_version = '5.6-alpha-49099'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.