diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php
index 3e4f3eefe6..3e3e24c60f 100644
--- a/wp-admin/update-core.php
+++ b/wp-admin/update-core.php
@@ -269,7 +269,9 @@ function list_plugin_updates() {
}
// Get plugin compat for updated version of WordPress.
if ( $core_update_version ) {
- if ( isset($info->compatibility[$core_update_version][$plugin_data->update->new_version]) ) {
+ if ( isset( $info->tested ) && version_compare( $info->tested, $core_update_version, '>=' ) ) {
+ $compat .= '
' . sprintf( __( 'Compatibility with WordPress %1$s: 100%% (according to its author)' ), $core_update_version );
+ } elseif ( isset( $info->compatibility[ $core_update_version ][ $plugin_data->update->new_version ] ) ) {
$update_compat = $info->compatibility[$core_update_version][$plugin_data->update->new_version];
$compat .= '
' . sprintf(__('Compatibility with WordPress %1$s: %2$d%% (%3$d "works" votes out of %4$d total)'), $core_update_version, $update_compat[0], $update_compat[2], $update_compat[1]);
} else {
diff --git a/wp-includes/version.php b/wp-includes/version.php
index ff8a997335..c4cf421057 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.4-alpha-34321';
+$wp_version = '4.4-alpha-34322';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.