diff --git a/wp-admin/includes/class-wp-automatic-updater.php b/wp-admin/includes/class-wp-automatic-updater.php index 01e4dea1aa..ba38ec95b3 100644 --- a/wp-admin/includes/class-wp-automatic-updater.php +++ b/wp-admin/includes/class-wp-automatic-updater.php @@ -1045,7 +1045,7 @@ class WP_Automatic_Updater { $body[] = __( 'These plugins failed to update:' ); foreach ( $failed_updates['plugin'] as $item ) { - $body[] = "- {$item->name}"; + $body[] = "- {$item->name} version {$item->item->new_version}"; $past_failure_emails[ $item->item->plugin ] = $item->item->new_version; } @@ -1058,7 +1058,7 @@ class WP_Automatic_Updater { $body[] = __( 'These themes failed to update:' ); foreach ( $failed_updates['theme'] as $item ) { - $body[] = "- {$item->name}"; + $body[] = "- {$item->name} version {$item->item->new_version}"; $past_failure_emails[ $item->item->theme ] = $item->item->new_version; } @@ -1076,7 +1076,7 @@ class WP_Automatic_Updater { $body[] = __( 'These plugins are now up to date:' ); foreach ( $successful_updates['plugin'] as $item ) { - $body[] = "- {$item->name}"; + $body[] = "- {$item->name} version {$item->item->new_version}"; unset( $past_failure_emails[ $item->item->plugin ] ); } @@ -1089,7 +1089,7 @@ class WP_Automatic_Updater { $body[] = __( 'These themes are now up to date:' ); foreach ( $successful_updates['theme'] as $item ) { - $body[] = "- {$item->name}"; + $body[] = "- {$item->name} version {$item->item->new_version}"; unset( $past_failure_emails[ $item->item->theme ] ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 4fc571c877..dd6f888050 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-beta2-48516'; +$wp_version = '5.5-beta2-48517'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.