From 2bcd388bf9b8cda4b84878b65c8e92694282bc33 Mon Sep 17 00:00:00 2001 From: dmsnell Date: Fri, 5 Jul 2024 22:23:14 +0000 Subject: [PATCH] HTML API: Fix wrong @since tag. When the remaining insertion modes were stubbed in the HTML Processor, a `@since` tag was mistakenly copied with 6.4.0 instead of 6.7.0. This patch fixes the invalid tag. Discussed in https://core.trac.wordpress.org/ticket/61576 Follow-up to [58679]. Props tobiasbg. See #61576. Built from https://develop.svn.wordpress.org/trunk@58680 git-svn-id: http://core.svn.wordpress.org/trunk@58082 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/html-api/class-wp-html-processor-state.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/html-api/class-wp-html-processor-state.php b/wp-includes/html-api/class-wp-html-processor-state.php index 75ad0a11c5..ab75041bee 100644 --- a/wp-includes/html-api/class-wp-html-processor-state.php +++ b/wp-includes/html-api/class-wp-html-processor-state.php @@ -50,7 +50,7 @@ class WP_HTML_Processor_State { /** * Before HTML insertion mode for full HTML parser. * - * @since 6.4.0 + * @since 6.7.0 * * @see https://html.spec.whatwg.org/#the-before-html-insertion-mode * @see WP_HTML_Processor_State::$insertion_mode diff --git a/wp-includes/version.php b/wp-includes/version.php index b30d9a2ca0..fed502578b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58679'; +$wp_version = '6.7-alpha-58680'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.