From e2f3071988903f3d6f68cbea08041cbdb3dc44a2 Mon Sep 17 00:00:00 2001 From: hellofromTonya Date: Mon, 20 Sep 2021 16:44:59 +0000 Subject: [PATCH] Build/Test Tools: Improve Composer update command in bootstrap error messages. Refines the test bootstrap error message to include the `-W` in the Composer update command. Why? To also update the chain of dependencies for the tests' dependencies. `composer update` will update the tests' direct dependencies. `composer update -W` will update the dependencies including *their* dependencies, which is the recommended course of action for WP. Follow-up to [51598], [51811], [51813]. Props jrf. See #46149. Built from https://develop.svn.wordpress.org/trunk@51828 git-svn-id: http://core.svn.wordpress.org/trunk@51435 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 c7638eb8d2..ad75eb2601 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51827'; +$wp_version = '5.9-alpha-51828'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.