Skip to:
Content

BuddyPress.org

Changeset 13568


Ignore:
Timestamp:
08/24/2023 08:45:31 PM (16 months ago)
Author:
dcavins
Message:

9.2.1 version bumps (Branch 9.0)

Location:
branches/9.0
Files:
7 edited

Legend:

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

    r13206 r13568  
    1616 * Author:      The BuddyPress Community
    1717 * Author URI:  https://buddypress.org/
    18  * Version:     9.2.0
     18 * Version:     9.2.1
    1919 * Text Domain: buddypress
    2020 * Domain Path: /bp-languages/
  • branches/9.0/npm-shrinkwrap.json

    r13206 r13568  
    11{
    22    "name": "buddypress",
    3     "version": "9.2.0",
     3    "version": "9.2.1",
    44    "lockfileVersion": 2,
    55    "requires": true,
  • branches/9.0/package.json

    r13206 r13568  
    7575        "url": "https://buddypress.svn.wordpress.org/trunk/"
    7676    },
    77     "version": "9.2.0",
     77    "version": "9.2.1",
    7878    "browserslist": [
    7979        "extends @wordpress/browserslist-config"
  • branches/9.0/src/bp-loader.php

    r13206 r13568  
    1616 * Author:      The BuddyPress Community
    1717 * Author URI:  https://buddypress.org/
    18  * Version:     9.2.0
     18 * Version:     9.2.1
    1919 * Text Domain: buddypress
    2020 * Domain Path: /bp-languages/
  • branches/9.0/src/bp-xprofile/classes/class-bp-xprofile-query.php

    r12534 r13568  
    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/9.0/src/class-buddypress.php

    r13206 r13568  
    304304        /** Versions **********************************************************/
    305305
    306         $this->version    = '9.2.0';
     306        $this->version    = '9.2.1';
    307307        $this->db_version = 12850;
    308308
  • branches/9.0/src/readme.txt

    r13206 r13568  
    77Requires PHP: 5.6
    88Tested up to: 5.8
    9 Stable tag: 9.2.0
     9Stable tag: 9.2.1
    1010
    1111BuddyPress helps site builders & developers add community features to their websites, with user profiles, activity streams, and more!
Note: See TracChangeset for help on using the changeset viewer.