From adb77d34e1cb37fb767b8919bce7fc736a62cdef Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 7 Aug 2021 14:47:02 +0000 Subject: [PATCH] Build/Test Tools: Fix message display in test bootstrap. Any messages to the user which are echo-ed out in the test bootstrap will generally display on a command-line interface. The *nix specific `"\n"` line ending will be ignored on Windows, making the messages less readable. For new lines in CLI messages, `PHP_EOL` should be used instead. This was already done in a few places in the script, but not consistently so. Fixed now. Follow-up to [UT882], [UT890], [44723], [45020], [48592], [49535], [51560]. Props jrf. See #53363. Built from https://develop.svn.wordpress.org/trunk@51581 git-svn-id: http://core.svn.wordpress.org/trunk@51192 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 7a133ef1f1..0c3c5eea88 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51580'; +$wp_version = '5.9-alpha-51581'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.