diff options
author | Joe McGill <joemcgill@git.wordpress.org> | 2024-01-30 16:07:48 +0000 |
---|---|---|
committer | Joe McGill <joemcgill@git.wordpress.org> | 2024-01-30 16:07:48 +0000 |
commit | eef28c2d4ee2f73f599af47c9a47ac9dabb3d646 (patch) | |
tree | dfb48dbd1aabf449f58601db11fb469fe3c8b13b | |
parent | 4ecb694aa97c51a7ec015b480da1277f6a737149 (diff) | |
download | wordpress-eef28c2d4ee2f73f599af47c9a47ac9dabb3d646.tar.gz wordpress-eef28c2d4ee2f73f599af47c9a47ac9dabb3d646.zip |
WordPress 4.3.33.
git-svn-id: https://develop.svn.wordpress.org/branches/4.3@57417 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 | 22 | ||||
-rw-r--r-- | src/wp-includes/version.php | 2 |
4 files changed, 26 insertions, 6 deletions
diff --git a/package-lock.json b/package-lock.json index 4727f2ed16..5953b3101b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "4.3.32", + "version": "4.3.33", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -8174,4 +8174,4 @@ } } } -} +}
\ No newline at end of file diff --git a/package.json b/package.json index 516189d7aa..f839b20636 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "4.3.32", + "version": "4.3.33", "description": "WordPress is web software you can use to create a beautiful website or blog.", "repository": { "type": "svn", @@ -63,4 +63,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 316995efa4..76861885ec 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -108,7 +108,27 @@ $tech_features = array( </h2> <div class="changelog point-releases"> - <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 32 ); ?></h3> + <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 33 ); ?></h3> + <p> + <?php + printf( + /* translators: %s: WordPress version number */ + __( '<strong>Version %1$s</strong> addressed some security issues.' ), + '4.3.33' + ); + ?> + <?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.3.33' ) + ) + ); + ?> + </p> <p> <?php printf( diff --git a/src/wp-includes/version.php b/src/wp-includes/version.php index a1f9fb3b39..44986c3a41 100644 --- a/src/wp-includes/version.php +++ b/src/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3.32-src'; +$wp_version = '4.3.33-src'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |