From 42e1bea8f1c983312a99301b69c35443d0d933c8 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 11 Feb 2022 18:05:03 +0000 Subject: [PATCH] Docs: Correct `@since` tag for `wp_cache_reset()`. The function was added in WordPress 3.0, not 2.6. Follow-up to [13066]. See #54729. Built from https://develop.svn.wordpress.org/trunk@52704 git-svn-id: http://core.svn.wordpress.org/trunk@52293 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/cache.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/cache.php b/wp-includes/cache.php index 2168569c58..30257e02af 100644 --- a/wp-includes/cache.php +++ b/wp-includes/cache.php @@ -338,7 +338,7 @@ function wp_cache_add_non_persistent_groups( $groups ) { * during unit tests, consider using wp_cache_init(). wp_cache_init() is not * recommended outside of unit tests as the performance penalty for using it is high. * - * @since 2.6.0 + * @since 3.0.0 * @deprecated 3.5.0 WP_Object_Cache::reset() * @see WP_Object_Cache::reset() * diff --git a/wp-includes/version.php b/wp-includes/version.php index 6c5168a212..cc83d75c25 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52703'; +$wp_version = '6.0-alpha-52704'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.