diff options
author | Joe McGill <joemcgill@git.wordpress.org> | 2024-01-30 16:09:35 +0000 |
---|---|---|
committer | Joe McGill <joemcgill@git.wordpress.org> | 2024-01-30 16:09:35 +0000 |
commit | 6ca5961580b8b6b78952e189dcfdec1ddc128d56 (patch) | |
tree | 1604632e95a36f36b57755b7603958d5547959f8 | |
parent | f286495baf0cc7fd2c8acc0acedd9dcba46ef2ec (diff) | |
download | wordpress-6ca5961580b8b6b78952e189dcfdec1ddc128d56.tar.gz wordpress-6ca5961580b8b6b78952e189dcfdec1ddc128d56.zip |
WordPress 4.4.32.
git-svn-id: https://develop.svn.wordpress.org/branches/4.4@57418 602fd350-edb4-49c9-b593-d223f7449a82
-rw-r--r-- | package-lock.json | 4 | ||||
-rw-r--r-- | package.json | 4 | ||||
-rw-r--r-- | src/wp-admin/about.php | 20 | ||||
-rw-r--r-- | src/wp-includes/version.php | 2 |
4 files changed, 25 insertions, 5 deletions
diff --git a/package-lock.json b/package-lock.json index df86bafbc7..56192af839 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "4.4.31", + "version": "4.4.32", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -8174,4 +8174,4 @@ } } } -} +}
\ No newline at end of file diff --git a/package.json b/package.json index 06d63927a8..eb5063fe17 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "4.4.31", + "version": "4.4.32", "description": "WordPress is web software you can use to create a beautiful website or blog.", "repository": { "type": "svn", @@ -64,4 +64,4 @@ "env:pull": "node ./tools/local-env/scripts/docker.js pull", "test:php": "node ./tools/local-env/scripts/docker.js run --rm phpunit phpunit" } -} +}
\ No newline at end of file diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php index 4f863c9387..c3b467e06e 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -55,6 +55,26 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); printf( /* translators: %s: WordPress version number */ __( '<strong>Version %s</strong> addressed some security issues.' ), + '4.4.32' + ); + ?> + <?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.4.32' ) + ) + ); + ?> + </p> + <p> + <?php + printf( + /* translators: %s: WordPress version number */ + __( '<strong>Version %s</strong> addressed some security issues.' ), '4.4.31' ); ?> diff --git a/src/wp-includes/version.php b/src/wp-includes/version.php index 554b34ea5c..5d48442283 100644 --- a/src/wp-includes/version.php +++ b/src/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4.31-src'; +$wp_version = '4.4.32-src'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |