File tree Expand file tree Collapse file tree 6 files changed +11
-9
lines changed Expand file tree Collapse file tree 6 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ## v0.0.15
6
+
5
7
- chore: Update Composer dev-dependencies.
6
8
- chore: Update WPGraphQL Coding Standards to v2.0.0-beta and lint.
9
+ - chore: Fix minimum supported WordPress version to be 5.6, which is the minimum requirement for RankMath 1.0.90.
7
10
- ci: Test Plugin compatibility with WordPress 6.3.
8
- - chore: fix minimum supported WordPress version to be 5.6, which is the minimum requirement for RankMath 1.0.90.
9
11
10
12
## v0.0.14
11
13
- fix: Fetch the correct SEO data when resolving custom taxonomy terms. Props @lucguerraz
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Adds WPGraphQL support for [Rank Math SEO](https://rankmath.com/). Built with [W
11
11
12
12
-----
13
13
14
- ![ Packagist License] ( https://img.shields.io/packagist/l/axepress/wp-graphql-rank-math?color=green ) ![ Packagist Version] ( https://img.shields.io/packagist/v/axepress/wp-graphql-rank-math?label=stable ) ![ GitHub commits since latest release (by SemVer)] ( https://img.shields.io/github/commits-since/AxeWP/wp-graphql-rank-math/0.0.14 ) ![ GitHub forks] ( https://img.shields.io/github/forks/AxeWP/wp-graphql-rank-math?style=social ) ![ GitHub Repo stars] ( https://img.shields.io/github/stars/AxeWP/wp-graphql-rank-math?style=social ) <br />
14
+ ![ Packagist License] ( https://img.shields.io/packagist/l/axepress/wp-graphql-rank-math?color=green ) ![ Packagist Version] ( https://img.shields.io/packagist/v/axepress/wp-graphql-rank-math?label=stable ) ![ GitHub commits since latest release (by SemVer)] ( https://img.shields.io/github/commits-since/AxeWP/wp-graphql-rank-math/0.0.15 ) ![ GitHub forks] ( https://img.shields.io/github/forks/AxeWP/wp-graphql-rank-math?style=social ) ![ GitHub Repo stars] ( https://img.shields.io/github/stars/AxeWP/wp-graphql-rank-math?style=social ) <br />
15
15
![ CodeQuality] ( https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-quality.yml?branch=develop&label=Code%20Quality )
16
16
![ Integration Tests] ( https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/integration-testing.yml?branch=develop&label=Integration%20Testing )
17
17
![ Coding Standards] ( https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-standard.yml?branch=develop&label=WordPress%20Coding%20Standards )
Original file line number Diff line number Diff line change 7
7
8
8
define ( 'WPGRAPHQL_SEO_AUTOLOAD ' , true );
9
9
define ( 'WPGRAPHQL_SEO_PLUGIN_FILE ' , 'wp-graphql-rank-math.php ' );
10
- define ( 'WPGRAPHQL_SEO_VERSION ' , '0.0.14 ' );
10
+ define ( 'WPGRAPHQL_SEO_VERSION ' , '0.0.15 ' );
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Requires at least: 5.6
5
5
Tested up to: 6.3.1
6
6
Requires PHP: 7.4
7
7
Requires WPGraphQL: 1.8.1
8
- Stable tag: 0.0.14
8
+ Stable tag: 0.0.15
9
9
License: GPL-3
10
10
License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
11
Original file line number Diff line number Diff line change 3
3
'name ' => 'axepress/wp-graphql-rank-math ' ,
4
4
'pretty_version ' => 'dev-develop ' ,
5
5
'version ' => 'dev-develop ' ,
6
- 'reference ' => 'a7f0c1c0c232ba9d1e6908d84d6b1f9e5b181c5e ' ,
6
+ 'reference ' => '41aed3861bd752fb8eeb4fb21346a87fb042180c ' ,
7
7
'type ' => 'wordpress-plugin ' ,
8
8
'install_path ' => __DIR__ . '/../../ ' ,
9
9
'aliases ' => array (),
22
22
'axepress/wp-graphql-rank-math ' => array (
23
23
'pretty_version ' => 'dev-develop ' ,
24
24
'version ' => 'dev-develop ' ,
25
- 'reference ' => 'a7f0c1c0c232ba9d1e6908d84d6b1f9e5b181c5e ' ,
25
+ 'reference ' => '41aed3861bd752fb8eeb4fb21346a87fb042180c ' ,
26
26
'type ' => 'wordpress-plugin ' ,
27
27
'install_path ' => __DIR__ . '/../../ ' ,
28
28
'aliases ' => array (),
Original file line number Diff line number Diff line change 7
7
* Author: AxePress
8
8
* Author URI: https://github.com/AxeWP
9
9
* Update URI: https://github.com/AxeWP/wp-graphql-rank-math
10
- * Version: 0.0.14
10
+ * Version: 0.0.15
11
11
* Text Domain: wp-graphql-rank-math
12
12
* Domain Path: /languages
13
13
* Requires at least: 5.6
20
20
* @package WPGraphQL\RankMath
21
21
* @author axepress
22
22
* @license GPL-3
23
- * @version 0.0.14
23
+ * @version 0.0.15
24
24
*/
25
25
26
26
// Exit if accessed directly.
53
53
function graphql_seo_constants (): void {
54
54
// Plugin version.
55
55
if ( ! defined ( 'WPGRAPHQL_SEO_VERSION ' ) ) {
56
- define ( 'WPGRAPHQL_SEO_VERSION ' , '0.0.14 ' );
56
+ define ( 'WPGRAPHQL_SEO_VERSION ' , '0.0.15 ' );
57
57
}
58
58
59
59
// Plugin Folder Path.
You can’t perform that action at this time.
0 commit comments