From 6937c8d87e76f6ab58a23319af91d06e5621a480 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Sun, 11 Sep 2022 21:54:08 +0000 Subject: [PATCH] Build/Test: Prevent using unsupported NPM versions. Using NPM 7+ currently causes a number of issues. In order to improve developer experience, we should prevent a developer from going down the road of using incompatible engines. See also: https://github.com/WordPress/gutenberg/pull/29204 and https://github.com/WordPress/gutenberg/pull/23600. Props rcorrales. Fixes #56547. Built from https://develop.svn.wordpress.org/trunk@54124 git-svn-id: http://core.svn.wordpress.org/trunk@53683 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 1bb1b9750c8..b661b68af5c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54123'; +$wp_version = '6.1-alpha-54124'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.