diff --git a/package-lock.json b/package-lock.json index a48ddcc1b2..7225c719ba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "5.8.2", + "version": "5.8.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 8983884ff5..9b999d41ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "5.8.2", + "version": "5.8.3", "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", "repository": { "type": "svn", diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php index f430f0e8be..0f8c782360 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.3' + ); + ?> + <?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.3' ) + ) + ); + ?> + </p> <p> <?php printf( diff --git a/src/wp-includes/version.php b/src/wp-includes/version.php index 975daec874..07574e5205 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.2-src'; +$wp_version = '5.8.3-src'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.