diff --git a/wp-includes/class-wp-meta-query.php b/wp-includes/class-wp-meta-query.php index 239fcd0bf9..44f342322c 100644 --- a/wp-includes/class-wp-meta-query.php +++ b/wp-includes/class-wp-meta-query.php @@ -99,7 +99,7 @@ class WP_Meta_Query { * * @since 3.2.0 * @since 4.2.0 Introduced support for naming query clauses by associative array keys. - * @since 5.0.0 Introduced $compare_key clause parameter, which enables LIKE key matches. + * @since 5.1.0 Introduced $compare_key clause parameter, which enables LIKE key matches. * * @param array $meta_query { * Array of meta query clauses. When first-order clauses or sub-clauses use strings as diff --git a/wp-includes/class-wp-query.php b/wp-includes/class-wp-query.php index 49b7017ad0..02f2406479 100644 --- a/wp-includes/class-wp-query.php +++ b/wp-includes/class-wp-query.php @@ -604,7 +604,7 @@ class WP_Query { * Introduced `RAND(x)` syntax for `$orderby`, which allows an integer seed value to random sorts. * @since 4.6.0 Added 'post_name__in' support for `$orderby`. Introduced the `$lazy_load_term_meta` argument. * @since 4.9.0 Introduced the `$comment_count` parameter. - * @since 5.0.0 Introduced the `$meta_compare_key` parameter. + * @since 5.1.0 Introduced the `$meta_compare_key` parameter. * * @param string|array $query { * Optional. Array or string of Query parameters. diff --git a/wp-includes/version.php b/wp-includes/version.php index e2c93ea383..5024236dcb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.1-alpha-44517'; +$wp_version = '5.1-alpha-44518'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.