Make WordPress Core

Changeset 54905


Ignore:
Timestamp:
11/30/2022 12:14:21 AM (22 months ago)
Author:
peterwilsoncc
Message:

WordPress 4.0.38.

Location:
branches/4.0
Files:
4 edited

Legend:

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

    r54579 r54905  
    11{
    22    "name": "WordPress",
    3     "version": "4.0.37",
     3    "version": "4.0.38",
    44    "lockfileVersion": 1,
    55    "requires": true,
  • branches/4.0/package.json

    r54579 r54905  
    11{
    22    "name": "WordPress",
    3     "version": "4.0.37",
     3    "version": "4.0.38",
    44    "description": "WordPress is web software you can use to create a beautiful website or blog.",
    55    "repository": {
  • branches/4.0/src/wp-admin/about.php

    r54579 r54905  
    4343
    4444<div class="changelog point-releases">
    45     <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 37 ); ?></h3>
     45    <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 38 ); ?></h3>
     46    <p>
     47        <?php
     48        printf(
     49            /* translators: %s: WordPress version number */
     50            _n(
     51                '<strong>Version %1$s</strong> addressed a security issue.',
     52                '<strong>Version %1$s</strong> addressed some security issues.',
     53                1
     54            ),
     55            '4.0.38'
     56        );
     57        ?>
     58        <?php
     59        printf(
     60            /* translators: %s: HelpHub URL */
     61            __( 'For more information, see <a href="%s">the release notes</a>.' ),
     62            sprintf(
     63                /* translators: %s: WordPress version */
     64                esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     65                sanitize_title( '4.0.38' )
     66            )
     67        );
     68        ?>
     69    </p>
    4670    <p>
    4771        <?php
  • branches/4.0/src/wp-includes/version.php

    r54579 r54905  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '4.0.37-src';
     7$wp_version = '4.0.38-src';
    88
    99/**
Note: See TracChangeset for help on using the changeset viewer.