Make WordPress Core

Changeset 42656 for branches/4.9


Ignore:
Timestamp:
02/06/2018 03:41:43 PM (9 years ago)
Author:
dd32
Message:

Bump the 4.9 branch to version 4.9.4.

Location:
branches/4.9
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9/package.json

    r42520 r42656  
    11{
    22  "name": "WordPress",
    3   "version": "4.9.3",
     3  "version": "4.9.4",
    44  "description": "WordPress is web software you can use to create a beautiful website or blog.",
    55  "repository": {
  • branches/4.9/src/wp-admin/about.php

    r42650 r42656  
    3333                <div class="changelog point-releases">
    3434                        <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3>
     35                        <p>
     36                                <?php
     37                                printf(
     38                                        /* translators: 1: WordPress version number, 2: plural number of bugs. */
     39                                        _n(
     40                                                '<strong>Version %1$s</strong> addressed %2$s bug.',
     41                                                '<strong>Version %1$s</strong> addressed %2$s bugs.',
     42                                                1
     43                                        ),
     44                                        '4.9.4',
     45                                        number_format_i18n( 1 )
     46                                );
     47                                ?>
     48                                <?php
     49                                /* translators: %s: Codex URL */
     50                                printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'https://codex.wordpress.org/Version_4.9.4' );
     51                                ?>
     52                        </p>
    3553                        <p>
    3654                                <?php
  • branches/4.9/src/wp-includes/version.php

    r42650 r42656  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '4.9.3-src';
     7$wp_version = '4.9.4-src';
    88
    99/**
Note: See TracChangeset for help on using the changeset viewer.