diff options
author | Jb Audras <audrasjb@git.wordpress.org> | 2023-10-12 14:49:24 +0000 |
---|---|---|
committer | Jb Audras <audrasjb@git.wordpress.org> | 2023-10-12 14:49:24 +0000 |
commit | 4dedaa5ec24385704d64b5facfd0695f73092682 (patch) | |
tree | 00c95c10ac2b4421eae1882853acee7378e38ead | |
parent | 923c683f88cc1672a31b0edaf105286991091461 (diff) | |
download | wordpress-4dedaa5ec24385704d64b5facfd0695f73092682.tar.gz wordpress-4dedaa5ec24385704d64b5facfd0695f73092682.zip |
WordPress 4.5.30.
git-svn-id: https://develop.svn.wordpress.org/branches/4.5@56863 602fd350-edb4-49c9-b593-d223f7449a82
-rw-r--r-- | package-lock.json | 2 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | src/wp-admin/about.php | 20 | ||||
-rw-r--r-- | src/wp-includes/version.php | 2 |
4 files changed, 23 insertions, 3 deletions
diff --git a/package-lock.json b/package-lock.json index 846b7d0b3c..415cffbc31 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "4.5.29", + "version": "4.5.30", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 15eccfa7d0..6f50c19a3d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "4.5.29", + "version": "4.5.30", "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 0e8c6bc1c4..d6651101d7 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -45,6 +45,26 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); printf( /* translators: %s: WordPress version number */ __( '<strong>Version %s</strong> addressed some security issues.' ), + '4.5.30' + ); + ?> + <?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.5.30' ) + ) + ); + ?> + </p> + <p> + <?php + printf( + /* translators: %s: WordPress version number */ + __( '<strong>Version %s</strong> addressed some security issues.' ), '4.5.29' ); ?> diff --git a/src/wp-includes/version.php b/src/wp-includes/version.php index 99aa6d9fa5..04cac04af1 100644 --- a/src/wp-includes/version.php +++ b/src/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5.29-src'; +$wp_version = '4.5.30-src'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |