Make WordPress Core

Changeset 52115


Ignore:
Timestamp:
11/10/2021 05:05:17 PM (4 years ago)
Author:
desrosj
Message:

WordPress 5.6.6.

Location:
branches/5.6
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/5.6/package-lock.json

    r51751 r52115  
    11{
    22    "name": "WordPress",
    3     "version": "5.6.5",
     3    "version": "5.6.6",
    44    "lockfileVersion": 1,
    55    "requires": true,
  • branches/5.6/package.json

    r51751 r52115  
    11{
    22    "name": "WordPress",
    3     "version": "5.6.5",
     3    "version": "5.6.6",
    44    "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
    55    "repository": {
  • branches/5.6/src/wp-admin/about.php

    r51751 r52115  
    7474        <div class="about__section changelog">
    7575            <div class="column has-border has-subtle-background-color">
    76                 <h2 class="is-smaller-heading"><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     76                <h2 class="is-smaller-heading"><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     77                <p>
     78                    <?php
     79                    printf(
     80                        /* translators: %s: WordPress version number */
     81                        __( '<strong>Version %s</strong> addressed one security issue.' ),
     82                        '5.6.6'
     83                    );
     84                    ?>
     85                    <?php
     86                    printf(
     87                        /* translators: %s: HelpHub URL */
     88                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     89                        sprintf(
     90                            /* translators: %s: WordPress version */
     91                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     92                            sanitize_title( '5.6.6' )
     93                        )
     94                    );
     95                    ?>
     96                </p>
    7797                <p>
    7898                    <?php
  • branches/5.6/src/wp-includes/version.php

    r51760 r52115  
    1414 * @global string $wp_version
    1515 */
    16 $wp_version = '5.6.5-src';
     16$wp_version = '5.6.6-src';
    1717
    1818/**
Note: See TracChangeset for help on using the changeset viewer.