diff options
author | Jonathan Desrosiers <desrosj@git.wordpress.org> | 2019-09-04 21:19:18 +0000 |
---|---|---|
committer | Jonathan Desrosiers <desrosj@git.wordpress.org> | 2019-09-04 21:19:18 +0000 |
commit | 1f23dd8a12e8d441da2f3335c2f52496082029dc (patch) | |
tree | c8ef34cdf7828f427603c29a65d8f25b3d162b95 | |
parent | ac50f6e34c88cc2ac452bd3d25bb43de22bdb227 (diff) | |
download | wordpress-1f23dd8a12e8d441da2f3335c2f52496082029dc.tar.gz wordpress-1f23dd8a12e8d441da2f3335c2f52496082029dc.zip |
WordPress 4.1.27.
git-svn-id: https://develop.svn.wordpress.org/branches/4.1@46035 602fd350-edb4-49c9-b593-d223f7449a82
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | src/wp-admin/about.php | 22 | ||||
-rw-r--r-- | src/wp-includes/version.php | 2 |
3 files changed, 23 insertions, 3 deletions
diff --git a/package.json b/package.json index 3b24a1164c..a19680c6cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "4.1.26", + "version": "4.1.27", "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 c7cc7d93bd..653d722ecd 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -42,7 +42,27 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); </h2> <div class="changelog point-releases"> - <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 26 ); ?></h3> + <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 27 ); ?></h3> + <p> + <?php + printf( + /* translators: %s: WordPress version number */ + __( '<strong>Version %s</strong> addressed some security issues.' ), + '4.1.27' + ); + ?> + <?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.1.27' ) + ) + ); + ?> + </p> <p> <?php printf( diff --git a/src/wp-includes/version.php b/src/wp-includes/version.php index 3d7064c185..c058b79ed9 100644 --- a/src/wp-includes/version.php +++ b/src/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1.26-src'; +$wp_version = '4.1.27-src'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |