summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJonathan Desrosiers <desrosj@git.wordpress.org>2022-08-30 17:26:40 +0000
committerJonathan Desrosiers <desrosj@git.wordpress.org>2022-08-30 17:26:40 +0000
commitb7e530f70e51f0121eeee79ab9d3966221dbf861 (patch)
treef941d29228d07ca2cfca29e7b4c70458efc98774
parent93ad4c1508876cce00c560836dad4cfde6656996 (diff)
downloadwordpress-b7e530f70e51f0121eeee79ab9d3966221dbf861.tar.gz
wordpress-b7e530f70e51f0121eeee79ab9d3966221dbf861.zip
WordPress 4.8.20.
git-svn-id: https://develop.svn.wordpress.org/branches/4.8@53999 602fd350-edb4-49c9-b593-d223f7449a82
-rw-r--r--package-lock.json2
-rw-r--r--package.json2
-rw-r--r--src/wp-admin/about.php20
-rw-r--r--src/wp-includes/version.php2
4 files changed, 23 insertions, 3 deletions
diff --git a/package-lock.json b/package-lock.json
index 4cb268cd88..468fcff157 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "WordPress",
- "version": "4.8.19",
+ "version": "4.8.20",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 2b834bc4a0..bb76c8bdbe 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "WordPress",
- "version": "4.8.19",
+ "version": "4.8.20",
"description": "WordPress is web software you can use to create a beautiful website or blog.",
"repository": {
"type": "svn",
diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php
index 748e7f731f..e3c435ab88 100644
--- a/src/wp-admin/about.php
+++ b/src/wp-admin/about.php
@@ -49,6 +49,26 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
<?php
printf(
/* translators: %s: WordPress version number */
+ __( '<strong>Version %s</strong> addressed some security issues.' ),
+ '4.8.20'
+ );
+ ?>
+ <?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( '4.8.20' )
+ )
+ );
+ ?>
+ </p>
+ <p>
+ <?php
+ printf(
+ /* translators: %s: WordPress version number */
__( '<strong>Version %s</strong> addressed one security issue.' ),
'4.8.19'
);
diff --git a/src/wp-includes/version.php b/src/wp-includes/version.php
index adfd5bc861..c76726763f 100644
--- a/src/wp-includes/version.php
+++ b/src/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.8.19-src';
+$wp_version = '4.8.20-src';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.