From 2d20fd7cc1d4625190f5bbb8baeefa92447bb73b Mon Sep 17 00:00:00 2001 From: Clorith Date: Fri, 4 Feb 2022 10:52:08 +0000 Subject: [PATCH] External libraries: Update version string for hoverIntent. Updating the version string will help invalidate caches, ensuring the new version of the library is loaded where applicable. Follow-up to [52429]. Props david.binda. Fixes #54904. Built from https://develop.svn.wordpress.org/trunk@52673 git-svn-id: http://core.svn.wordpress.org/trunk@52262 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/script-loader.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index c265dd32ce..bc52a5f907 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -1142,7 +1142,7 @@ function wp_default_scripts( $scripts ) { $scripts->add( 'media-upload', "/wp-admin/js/media-upload$suffix.js", array( 'thickbox', 'shortcode' ), false, 1 ); - $scripts->add( 'hoverIntent', "/wp-includes/js/hoverIntent$suffix.js", array( 'jquery' ), '1.10.1', 1 ); + $scripts->add( 'hoverIntent', "/wp-includes/js/hoverIntent$suffix.js", array( 'jquery' ), '1.10.2', 1 ); // JS-only version of hoverintent (no dependencies). $scripts->add( 'hoverintent-js', '/wp-includes/js/hoverintent-js.min.js', array(), '2.2.1', 1 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 4a87972f74..1cf41d7142 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52672'; +$wp_version = '6.0-alpha-52673'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.