Make WordPress Core

Changeset 50870


Ignore:
Timestamp:
05/12/2021 11:11:26 PM (4 years ago)
Author:
peterwilsoncc
Message:

WordPress 5.6.4.

Location:
branches/5.6
Files:
4 edited

Legend:

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

    r50721 r50870  
    11{
    22    "name": "WordPress",
    3     "version": "5.6.3",
     3    "version": "5.6.4",
    44    "lockfileVersion": 1,
    55    "requires": true,
  • branches/5.6/package.json

    r50721 r50870  
    11{
    22    "name": "WordPress",
    3     "version": "5.6.3",
     3    "version": "5.6.4",
    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

    r50726 r50870  
    7979                    printf(
    8080                        /* translators: %s: WordPress version number */
     81                        __( '<strong>Version %s</strong> addressed one security issue.' ),
     82                        '5.6.4'
     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.4' )
     93                        )
     94                    );
     95                    ?>
     96                </p>
     97                <p>
     98                    <?php
     99                    printf(
     100                        /* translators: %s: WordPress version number */
    81101                        __( '<strong>Version %s</strong> addressed some security issues.' ),
    82102                        '5.6.3'
  • branches/5.6/src/wp-includes/version.php

    r50737 r50870  
    1414 * @global string $wp_version
    1515 */
    16 $wp_version = '5.6.3-src';
     16$wp_version = '5.6.4-src';
    1717
    1818/**
Note: See TracChangeset for help on using the changeset viewer.