Skip to content

Commit 0b00708

Browse files
authored
chore: version bump (#64)
1 parent 2d3d254 commit 0b00708

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## v0.0.16
6+
57
- fix: Correctly parse excluded Post/Term IDs when returning nodes for Sitemap. Props @marcinkrzeminski
68
- chore: Update Composer dev-dependencies.
79
- chore!: Bump minimum supported WPGraphQL version to v1.14.0.

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.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 />
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.16) ![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.15' );
10+
define( 'WPGRAPHQL_SEO_VERSION', '0.0.16' );

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Requires at least: 6.0
55
Tested up to: 6.3.2
66
Requires PHP: 7.4
77
Requires WPGraphQL: 1.14.0
8-
Stable tag: 0.0.15
8+
Stable tag: 0.0.16
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' => 'db243ba2341637af3e6be7e281842e2b18fd5c92',
6+
'reference' => '2d3d25457b9acc5ab009e8b22973ac0830e3a53f',
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' => 'db243ba2341637af3e6be7e281842e2b18fd5c92',
25+
'reference' => '2d3d25457b9acc5ab009e8b22973ac0830e3a53f',
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.15
10+
* Version: 0.0.16
1111
* Text Domain: wp-graphql-rank-math
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
@@ -20,7 +20,7 @@
2020
* @package WPGraphQL\RankMath
2121
* @author axepress
2222
* @license GPL-3
23-
* @version 0.0.15
23+
* @version 0.0.16
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.15' );
56+
define( 'WPGRAPHQL_SEO_VERSION', '0.0.16' );
5757
}
5858

5959
// Plugin Folder Path.

0 commit comments

Comments
 (0)