From fb115f6a0137f1cbca2e10a2ec83cb68d7d0468c Mon Sep 17 00:00:00 2001 From: desrosj Date: Sat, 12 Oct 2024 13:16:12 +0000 Subject: [PATCH] Build/Test Tools: Add input for Gutenberg version to E2E workflow. The E2E test suite has some basic tests to confirm that the plugin can be activated without conflicts. This works great until the minimum version of WordPress required to run the plugin is raised. Old branches that attempt to run these tests that are newly incompatible with the latest version of the plugin will fail. This change adds a `gutenberg-version` input to the E2E GitHub Action workflow to allow these tests to continue running with the last compatible version. Props swissspidy. See #61530. Built from https://develop.svn.wordpress.org/trunk@59220 git-svn-id: http://core.svn.wordpress.org/trunk@58613 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 8cfed7ce72..d158ba26b6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-beta2-59219'; +$wp_version = '6.7-beta2-59220'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.