Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update db_version to align with core minimum #64

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading