Skip to:
Content

BuddyPress.org

Changeset 13558


Ignore:
Timestamp:
08/24/2023 08:06:54 PM (3 years ago)
Author:
imath
Message:

11.3.1 version bumps (Branch 11.0)

Location:
branches/11.0
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/11.0/bp-loader.php

    r13478 r13558  
    2222 * Requires PHP:      5.6
    2323 * Requires at least: 5.7
    24  * Version:           11.2.0
     24 * Version:           11.3.1
    2525 */
    2626
  • branches/11.0/npm-shrinkwrap.json

    r13478 r13558  
    11{
    22        "name": "buddypress",
    3         "version": "11.2.0",
     3        "version": "11.3.1",
    44        "lockfileVersion": 1,
    55        "requires": true,
  • branches/11.0/package.json

    r13478 r13558  
    7979                "url": "https://buddypress.svn.wordpress.org/trunk/"
    8080        },
    81         "version": "11.2.0",
     81        "version": "11.3.1",
    8282        "browserslist": [
    8383                "extends @wordpress/browserslist-config"
  • branches/11.0/src/bp-loader.php

    r13478 r13558  
    2222 * Requires PHP:      5.6
    2323 * Requires at least: 5.7
    24  * Version:           11.2.0
     24 * Version:           11.3.1
    2525 */
    2626
  • branches/11.0/src/bp-xprofile/classes/class-bp-xprofile-query.php

    r12534 r13558  
    523523                        $sibling_compare = strtoupper( $sibling['compare'] );
    524524                        if ( in_array( $clause_compare, $compatible_compares ) && in_array( $sibling_compare, $compatible_compares ) ) {
    525                                 $alias = $sibling['alias'];
     525                                $alias = preg_replace( '/\W/', '_', $sibling['alias'] );
    526526                                break;
    527527                        }
  • branches/11.0/src/class-buddypress.php

    r13478 r13558  
    350350                /** Versions */
    351351
    352                 $this->version    = '11.2.0';
     352                $this->version    = '11.3.1';
    353353                $this->db_version = 13271;
    354354
  • branches/11.0/src/readme.txt

    r13543 r13558  
    77Requires at least: 5.7
    88Tested up to:      6.3
    9 Stable tag:        11.2.0
     9Stable tag:        11.3.1
    1010
    1111BuddyPress helps site builders & developers add community features to their websites, with user profiles, activity streams, and more!
     
    126126== Upgrade Notice ==
    127127
     128= 11.3.1 =
     129See: https://codex.buddypress.org/releases/version-11-3-1/
     130
    128131= 11.2.0 =
    129132See: https://codex.buddypress.org/releases/version-11-2-0/
     
    170173== Changelog ==
    171174
     175= 11.3.1 =
     176See: https://codex.buddypress.org/releases/version-11-3-1/
     177
    172178= 11.2.0 =
    173179See: https://codex.buddypress.org/releases/version-11-2-0/
Note: See TracChangeset for help on using the changeset viewer.