From eff616ca9dc275cea6e74a793708f34dcb64ec00 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Wed, 11 Jun 2025 14:26:23 +0000 Subject: [PATCH] Build/Test Tools: Reduce the bcrypt cost during testing in order to speed up tests. The lowest allowable cost in PHP is 4, so 5 is used which means tests can still to reduce the cost by one when testing alterations to the cost. See #63026 Built from https://develop.svn.wordpress.org/trunk@60298 git-svn-id: http://core.svn.wordpress.org/trunk@59634 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 fe5374f0bb..0c06af8463 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60297'; +$wp_version = '6.9-alpha-60298'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.