diff --git a/package-lock.json b/package-lock.json index 0e378b6039..1a64c6dee1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "5.8.8", + "version": "5.8.9", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -26863,4 +26863,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/package.json b/package.json index eddff67709..f28e8841b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "5.8.8", + "version": "5.8.9", "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", "repository": { "type": "svn", @@ -175,4 +175,4 @@ "test:e2e": "node ./tests/e2e/run-tests.js", "wp-packages-update": "wp-scripts packages-update" } -} +} \ No newline at end of file diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php index b4d5c330d7..9aeb96f50c 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -43,6 +43,26 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; <div class="about__section changelog"> <div class="column"> <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2> + <p> + <?php + printf( + /* translators: %s: WordPress version number. */ + __( '<strong>Version %s</strong> addressed some security issues.' ), + '5.8.9' + ); + ?> + <?php + printf( + /* translators: %s: HelpHub URL. */ + __( 'For more information, see <a href="%s">the release notes</a>.' ), + sprintf( + /* translators: %s: WordPress version. */ + esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), + sanitize_title( '5.8.9' ) + ) + ); + ?> + </p> <p> <?php printf( diff --git a/src/wp-includes/version.php b/src/wp-includes/version.php index f8acd83924..a3684a910f 100644 --- a/src/wp-includes/version.php +++ b/src/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8.8-src'; +$wp_version = '5.8.9-src'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.