Skip to content

Commit 8cb65e8

Browse files
committed
WordPress 6.2.9.
git-svn-id: https://develop.svn.wordpress.org/branches/6.2@61959 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 93875af commit 8cb65e8

4 files changed

Lines changed: 40 additions & 20 deletions

File tree

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "WordPress",
3-
"version": "6.2.8",
3+
"version": "6.2.9",
44
"description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
55
"repository": {
66
"type": "svn",

src/wp-admin/about.php

Lines changed: 37 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -45,26 +45,46 @@
4545
<div class="about__section changelog">
4646
<div class="column">
4747
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
48-
<p>
49-
<?php
50-
printf(
48+
<p>
49+
<?php
50+
printf(
5151
/* translators: %s: WordPress version. */
52-
__( '<strong>Version %s</strong> addressed some security issues.' ),
53-
'6.2.8'
54-
);
55-
?>
56-
<?php
57-
printf(
52+
__( '<strong>Version %s</strong> addressed some security issues.' ),
53+
'6.2.9'
54+
);
55+
?>
56+
<?php
57+
printf(
5858
/* translators: %s: HelpHub URL. */
59-
__( 'For more information, see <a href="%s">the release notes</a>.' ),
60-
sprintf(
59+
__( 'For more information, see <a href="%s">the release notes</a>.' ),
60+
sprintf(
6161
/* translators: %s: WordPress version. */
62-
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
63-
sanitize_title( '6.2.8' )
64-
)
65-
);
66-
?>
67-
</p>
62+
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
63+
sanitize_title( '6.2.9' )
64+
)
65+
);
66+
?>
67+
</p>
68+
<p>
69+
<?php
70+
printf(
71+
/* translators: %s: WordPress version. */
72+
__( '<strong>Version %s</strong> addressed some security issues.' ),
73+
'6.2.8'
74+
);
75+
?>
76+
<?php
77+
printf(
78+
/* translators: %s: HelpHub URL. */
79+
__( 'For more information, see <a href="%s">the release notes</a>.' ),
80+
sprintf(
81+
/* translators: %s: WordPress version. */
82+
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
83+
sanitize_title( '6.2.8' )
84+
)
85+
);
86+
?>
87+
</p>
6888
<p>
6989
<?php
7090
printf(

src/wp-includes/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @global string $wp_version
1818
*/
19-
$wp_version = '6.2.8-src';
19+
$wp_version = '6.2.9-src';
2020

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

0 commit comments

Comments
 (0)