Skip to content

Commit

Permalink
Post WordPress 5.2.4 version bump. The 5.2 branch is now 5.2.5-alpha.
Browse files Browse the repository at this point in the history
git-svn-id: https://develop.svn.wordpress.org/branches/5.2@46540 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
desrosj committed Oct 14, 2019
1 parent 4a5a36c commit 2c2a5f8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "WordPress",
"version": "5.2.4",
"version": "5.2.5",
"description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
"repository": {
"type": "svn",
Expand Down
10 changes: 5 additions & 5 deletions src/wp-admin/about.php
Expand Up @@ -60,10 +60,10 @@
?>
<?php
printf(
/* translators: %s: HelpHub URL */
/* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version */
/* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '5.2.4' )
)
Expand All @@ -73,7 +73,7 @@
<p>
<?php
printf(
/* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
/* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
_n(
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
Expand All @@ -85,10 +85,10 @@
?>
<?php
printf(
/* translators: %s: HelpHub URL */
/* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version */
/* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '5.2.3' )
)
Expand Down
2 changes: 1 addition & 1 deletion src/wp-includes/version.php
Expand Up @@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.2.4-src';
$wp_version = '5.2.5-alpha-src';

/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
Expand Down

0 comments on commit 2c2a5f8

Please sign in to comment.