Make WordPress Core

Changeset 57964


Ignore:
Timestamp:
04/09/2024 02:17:00 PM (2 years ago)
Author:
johnbillion
Message:

WordPress 6.0.8.

Location:
branches/6.0
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/6.0/Gruntfile.js

    r57958 r57964  
    15571557        grunt.registerTask( 'verify:source-maps', function() {
    15581558                const ignoredFiles = [
    1559                         'build/wp-includes/js/dist/block-editor.js',
    1560                         'build/wp-includes/js/dist/block-editor.min.js',
    15611559                        'build/wp-includes/js/dist/components.js'
    15621560                ];
  • branches/6.0/src/wp-admin/about.php

    r57434 r57964  
    4141                        <div class="column">
    4242                                <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     43                                <p>
     44                                        <?php
     45                                        printf(
     46                                                /* translators: 1: WordPress version number, 2: Plural number of bugs. */
     47                                                _n(
     48                                                        '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
     49                                                        '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',
     50                                                        12
     51                                                ),
     52                                                '6.0.8',
     53                                                '12'
     54                                        );
     55                                        ?>
     56                                        <?php
     57                                        printf(
     58                                                /* translators: %s: HelpHub URL. */
     59                                                __( 'For more information, see <a href="%s">the release notes</a>.' ),
     60                                                sprintf(
     61                                                        /* translators: %s: WordPress version. */
     62                                                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     63                                                        sanitize_title( '6.0.8' )
     64                                                )
     65                                        );
     66                                        ?>
     67                                </p>
    4368                                <p>
    4469                                        <?php
  • branches/6.0/src/wp-includes/version.php

    r57434 r57964  
    1717 * @global string $wp_version
    1818 */
    19 $wp_version = '6.0.7-src';
     19$wp_version = '6.0.8-src';
    2020
    2121/**
Note: See TracChangeset for help on using the changeset viewer.