Skip to content

Commit cabad76

Browse files
committed
WordPress 5.0.10.
git-svn-id: https://develop.svn.wordpress.org/branches/5.0@47993 602fd350-edb4-49c9-b593-d223f7449a82
1 parent e3356d8 commit cabad76

File tree

4 files changed

+35
-15
lines changed

4 files changed

+35
-15
lines changed

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": "5.0.9",
3+
"version": "5.0.10",
44
"description": "WordPress is web software you can use to create a beautiful website or blog.",
55
"repository": {
66
"type": "svn",

src/wp-admin/about.php

Lines changed: 32 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -65,17 +65,37 @@
6565
<p>
6666
<?php
6767
printf(
68-
/* translators: %s: WordPress version number */
68+
/* translators: %s: WordPress version number */
69+
__( '<strong>Version %s</strong> addressed some security issues.' ),
70+
'5.0.10'
71+
);
72+
?>
73+
<?php
74+
printf(
75+
/* translators: %s: HelpHub URL */
76+
__( 'For more information, see <a href="%s">the release notes</a>.' ),
77+
sprintf(
78+
/* translators: %s: WordPress version */
79+
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
80+
sanitize_title( '5.0.10' )
81+
)
82+
);
83+
?>
84+
</p>
85+
<p>
86+
<?php
87+
printf(
88+
/* translators: %s: WordPress version number */
6989
__( '<strong>Version %s</strong> addressed some security issues.' ),
7090
'5.0.9'
7191
);
7292
?>
7393
<?php
7494
printf(
75-
/* translators: %s: HelpHub URL */
95+
/* translators: %s: HelpHub URL */
7696
__( 'For more information, see <a href="%s">the release notes</a>.' ),
7797
sprintf(
78-
/* translators: %s: WordPress version */
98+
/* translators: %s: WordPress version */
7999
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
80100
sanitize_title( '5.0.9' )
81101
)
@@ -85,17 +105,17 @@
85105
<p>
86106
<?php
87107
printf(
88-
/* translators: %s: WordPress version number */
108+
/* translators: %s: WordPress version number */
89109
__( '<strong>Version %s</strong> addressed some security issues.' ),
90110
'5.0.8'
91111
);
92112
?>
93113
<?php
94114
printf(
95-
/* translators: %s: HelpHub URL */
115+
/* translators: %s: HelpHub URL */
96116
__( 'For more information, see <a href="%s">the release notes</a>.' ),
97117
sprintf(
98-
/* translators: %s: WordPress version */
118+
/* translators: %s: WordPress version */
99119
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
100120
sanitize_title( '5.0.8' )
101121
)
@@ -105,17 +125,17 @@
105125
<p>
106126
<?php
107127
printf(
108-
/* translators: %s: WordPress version number */
128+
/* translators: %s: WordPress version number */
109129
__( '<strong>Version %s</strong> addressed some security issues.' ),
110130
'5.0.7'
111131
);
112132
?>
113133
<?php
114134
printf(
115-
/* translators: %s: HelpHub URL */
135+
/* translators: %s: HelpHub URL */
116136
__( 'For more information, see <a href="%s">the release notes</a>.' ),
117137
sprintf(
118-
/* translators: %s: WordPress version */
138+
/* translators: %s: WordPress version */
119139
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
120140
sanitize_title( '5.0.7' )
121141
)
@@ -125,17 +145,17 @@
125145
<p>
126146
<?php
127147
printf(
128-
/* translators: %s: WordPress version number */
148+
/* translators: %s: WordPress version number */
129149
__( '<strong>Version %s</strong> addressed some security issues.' ),
130150
'5.0.6'
131151
);
132152
?>
133153
<?php
134154
printf(
135-
/* translators: %s: HelpHub URL */
155+
/* translators: %s: HelpHub URL */
136156
__( 'For more information, see <a href="%s">the release notes</a>.' ),
137157
sprintf(
138-
/* translators: %s: WordPress version */
158+
/* translators: %s: WordPress version */
139159
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
140160
sanitize_title( '5.0.6' )
141161
)

src/wp-includes/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* @global string $wp_version
66
*/
7-
$wp_version = '5.0.9-src';
7+
$wp_version = '5.0.10-src';
88

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

0 commit comments

Comments
 (0)