Make WordPress Core

Changeset 57962


Ignore:
Timestamp:
04/09/2024 02:13:41 PM (3 weeks ago)
Author:
johnbillion
Message:

WordPress 6.2.5.

Location:
branches/6.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/6.2/Gruntfile.js

    r57956 r57962  
    16141614    grunt.registerTask( 'verify:source-maps', function() {
    16151615        const ignoredFiles = [
    1616             'build/wp-includes/js/dist/block-editor.js',
    1617             'build/wp-includes/js/dist/block-editor.min.js',
    16181616            'build/wp-includes/js/dist/components.js'
    16191617        ];
  • branches/6.2/src/wp-admin/about.php

    r57436 r57962  
    4646            <div class="column">
    4747                <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     48                <p>
     49                    <?php
     50                    printf(
     51                        /* translators: 1: WordPress version number, 2: Plural number of bugs. */
     52                        _n(
     53                            '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
     54                            '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',
     55                            12
     56                        ),
     57                        '6.2.5',
     58                        '12'
     59                    );
     60                    ?>
     61                    <?php
     62                    printf(
     63                        /* translators: %s: HelpHub URL. */
     64                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     65                        sprintf(
     66                            /* translators: %s: WordPress version. */
     67                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     68                            sanitize_title( '6.2.5' )
     69                        )
     70                    );
     71                    ?>
     72                </p>
    4873                <p>
    4974                    <?php
  • branches/6.2/src/wp-includes/version.php

    r57436 r57962  
    1717 * @global string $wp_version
    1818 */
    19 $wp_version = '6.2.4-src';
     19$wp_version = '6.2.5-src';
    2020
    2121/**
Note: See TracChangeset for help on using the changeset viewer.