Skip to content

Commit

Permalink
Update db_version to align with core minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
aaemnnosttv committed Jul 22, 2024
1 parent 1c52157 commit bf76460
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/db.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}

/**
Expand Down

0 comments on commit bf76460

Please sign in to comment.