Skip to content

Commit 57078e5

Browse files
authored
chore: version bump (#61)
1 parent 41aed38 commit 57078e5

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
## Unreleased
44

5+
## v0.0.15
6+
57
- chore: Update Composer dev-dependencies.
68
- 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.
710
- 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.
911

1012
## v0.0.14
1113
- fix: Fetch the correct SEO data when resolving custom taxonomy terms. Props @lucguerraz

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Adds WPGraphQL support for [Rank Math SEO](https://rankmath.com/). Built with [W
1111

1212
-----
1313

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 />
1515
![CodeQuality](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-quality.yml?branch=develop&label=Code%20Quality)
1616
![Integration Tests](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/integration-testing.yml?branch=develop&label=Integration%20Testing)
1717
![Coding Standards](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-standard.yml?branch=develop&label=WordPress%20Coding%20Standards)

phpstan/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
define( 'WPGRAPHQL_SEO_AUTOLOAD', true );
99
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' );

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Requires at least: 5.6
55
Tested up to: 6.3.1
66
Requires PHP: 7.4
77
Requires WPGraphQL: 1.8.1
8-
Stable tag: 0.0.14
8+
Stable tag: 0.0.15
99
License: GPL-3
1010
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1111

vendor/composer/installed.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => 'axepress/wp-graphql-rank-math',
44
'pretty_version' => 'dev-develop',
55
'version' => 'dev-develop',
6-
'reference' => 'a7f0c1c0c232ba9d1e6908d84d6b1f9e5b181c5e',
6+
'reference' => '41aed3861bd752fb8eeb4fb21346a87fb042180c',
77
'type' => 'wordpress-plugin',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -22,7 +22,7 @@
2222
'axepress/wp-graphql-rank-math' => array(
2323
'pretty_version' => 'dev-develop',
2424
'version' => 'dev-develop',
25-
'reference' => 'a7f0c1c0c232ba9d1e6908d84d6b1f9e5b181c5e',
25+
'reference' => '41aed3861bd752fb8eeb4fb21346a87fb042180c',
2626
'type' => 'wordpress-plugin',
2727
'install_path' => __DIR__ . '/../../',
2828
'aliases' => array(),

wp-graphql-rank-math.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Author: AxePress
88
* Author URI: https://github.com/AxeWP
99
* Update URI: https://github.com/AxeWP/wp-graphql-rank-math
10-
* Version: 0.0.14
10+
* Version: 0.0.15
1111
* Text Domain: wp-graphql-rank-math
1212
* Domain Path: /languages
1313
* Requires at least: 5.6
@@ -20,7 +20,7 @@
2020
* @package WPGraphQL\RankMath
2121
* @author axepress
2222
* @license GPL-3
23-
* @version 0.0.14
23+
* @version 0.0.15
2424
*/
2525

2626
// Exit if accessed directly.
@@ -53,7 +53,7 @@
5353
function graphql_seo_constants(): void {
5454
// Plugin version.
5555
if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
56-
define( 'WPGRAPHQL_SEO_VERSION', '0.0.14' );
56+
define( 'WPGRAPHQL_SEO_VERSION', '0.0.15' );
5757
}
5858

5959
// Plugin Folder Path.

0 commit comments

Comments
 (0)