Make WordPress Core

Changeset 41210


Ignore:
Timestamp:
08/02/2017 08:57:42 PM (6 years ago)
Author:
westonruter
Message:

Bump 4.8 branch to version 4.8.1.

Location:
branches/4.8/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.8/src/wp-admin/about.php

    r40887 r41210  
    4343            <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
    4444        </h2>
     45
     46        <div class="changelog point-releases">
     47            <h3><?php _e( 'Maintenance Release' ); ?></h3>
     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 %2$s bug.',
     54                        '<strong>Version %1$s</strong> addressed %2$s bugs.',
     55                        29
     56                    ),
     57                    '4.8.1',
     58                    number_format_i18n( 29 )
     59                );
     60                ?>
     61                <?php
     62                /* translators: %s: Codex URL */
     63                printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'https://codex.wordpress.org/Version_4.8.1' );
     64                ?>
     65                </p>
     66        </div>
    4567
    4668        <div class="feature-section one-col">
  • branches/4.8/src/wp-includes/version.php

    r41203 r41210  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '4.8.1-RC2-41202-src';
     7$wp_version = '4.8.1-src';
    88
    99/**
Note: See TracChangeset for help on using the changeset viewer.