From af31e18ab4e79bd0d84a68ecbda5980d863373d3 Mon Sep 17 00:00:00 2001 From: Bernhard Reiter Date: Mon, 26 Jun 2023 15:43:30 +0000 Subject: [PATCH] Tools: Fix unresolvable conflicts computation in package sync script. Computation of unresolvable version conflicts in the Gutenberg package sync script had a few issues that were causing it to fail, among them two type errors in the destructuring of function arguments. Furthermore, de-duplication of required package versions was missing, leading to false positives being reported, when multiple instances of the same package all required the same version. Props dmsnell. Fixes #58628. Built from https://develop.svn.wordpress.org/trunk@56035 git-svn-id: http://core.svn.wordpress.org/trunk@55547 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 f9125ae07b..24deb0dbae 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-56034'; +$wp_version = '6.3-alpha-56035'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.