From 00a1a85ba34216e121c929bb7ff13f8fac949cd4 Mon Sep 17 00:00:00 2001 From: spacedmonkey Date: Fri, 7 Jul 2023 11:32:23 +0000 Subject: [PATCH] Build/Test: Fix dynamic property deprecation warning in object cache drop-in. Fix deprecation warning for dynamic property in object cache drop-in used in core unit tests. Dynamic (non-explicitly declared) properties are deprecated as of PHP 8.2 and are expected to become a fatal error in PHP 9.0. Props spacedmonkey, johnbillion. Fixes #58736. See #56034. Built from https://develop.svn.wordpress.org/trunk@56161 git-svn-id: http://core.svn.wordpress.org/trunk@55673 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 ffc654b5ec..f5c3f04341 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-beta3-56160'; +$wp_version = '6.3-beta3-56161'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.