Changeset 56874
- Timestamp:
- 10/12/2023 03:02:50 PM (14 months ago)
- Location:
- branches/5.0
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/package-lock.json
r55791 r56874 1 1 { 2 2 "name": "WordPress", 3 "version": "5.0. 19",3 "version": "5.0.20", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/5.0/package.json
r55791 r56874 1 1 { 2 2 "name": "WordPress", 3 "version": "5.0. 19",3 "version": "5.0.20", 4 4 "description": "WordPress is web software you can use to create a beautiful website or blog.", 5 5 "repository": { -
branches/5.0/src/wp-admin/about.php
r55791 r56874 63 63 <div class="changelog point-releases"> 64 64 <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3> 65 <p> 66 <?php 67 printf( 68 /* translators: %s: WordPress version number */ 69 __( '<strong>Version %s</strong> addressed some security issues.' ), 70 '5.0.20' 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.20' ) 81 ) 82 ); 83 ?> 84 </p> 65 85 <p> 66 86 <?php -
branches/5.0/src/wp-includes/version.php
r55791 r56874 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '5.0. 19-src';7 $wp_version = '5.0.20-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.