From 9b8fe2824201bf8b67713be7dc887823525d9279 Mon Sep 17 00:00:00 2001 From: desrosj Date: Wed, 28 Oct 2020 23:17:23 +0000 Subject: [PATCH] Build/Test Tools: Allow the desired version of PHPUnit to be passed to the local Docker environment. This reintroduces [49358] with a modification to the `.travis.yml` file to avoid an issue with `dotenv-expand` being unable to expand variables into `process.env` only on Travis. The `LOCAL_PHPUNIT` environment variabl allows the desired version of PHPUnit to be specified when running the PHP tests within the local Docker environment. Because support for newer versions of PHPUnit is not backported, some versions of PHP need the ability to run multiple versions of PHPUnit for different branches. This adds the flexibility needed to use the Docker environment within those older branches to run the PHP tests. Props johnbillion, SergeyBiryukov. See #50042. Built from https://develop.svn.wordpress.org/trunk@49362 git-svn-id: http://core.svn.wordpress.org/trunk@49122 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 2ef7529c8d..bdc9cff994 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta2-49360'; +$wp_version = '5.6-beta2-49362'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.