From 24500cc798f2aac4eef30a2fd1efeaf20c8bae25 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Tue, 6 Jul 2021 19:13:57 +0000 Subject: [PATCH] Build/Test Tools: Add assertions to ensure version-controlled files are not modified during CI, and fix the `grunt clean` command. Some tests and some commands that run during the build steps modify files that are under version control. This adds assertions to ensure that these files don't remain in a modified state after the test runs on CI. This also fixes the `grunt clean` command which erroneously deletes `script-loader-packages.php`. This file is re-populated during the build, but deleting it during the clean is undesirable. Merges [51355] to the 5.8 branch. Fixes #53606 Built from https://develop.svn.wordpress.org/branches/5.8@51357 git-svn-id: http://core.svn.wordpress.org/branches/5.8@50966 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 22fef038fa..0d358130d6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-RC1-51354'; +$wp_version = '5.8-RC1-51357'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.