From bf7646002f7a403328342ba87112f7fad6df51b8 Mon Sep 17 00:00:00 2001 From: Evan Mattson Date: Sun, 21 Jul 2024 21:22:59 -0400 Subject: [PATCH] Update db_version to align with core minimum --- src/db.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/db.php b/src/db.php index 7e70a09..e00ce03 100644 --- a/src/db.php +++ b/src/db.php @@ -2826,8 +2826,9 @@ public function has_cap($db_cap) */ public function db_version() { - // WordPress currently requires this to be 5.0 or greater. - return '5.5'; + // WordPress currently requires this to be 5.5.5 or greater. + // See https://github.com/WordPress/wordpress-develop/blob/308271cd35c3c71548f6bece6746e67fc4aa6d89/src/wp-includes/version.php#L47 + return '5.5.5'; } /**