Skip to content

Commit a119047

Browse files
authored
chore: version bump (#110)
1 parent de6c1ce commit a119047

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

3-
- fix: Prevent fatal error when resolving seo from private `Post` models. H/t @MonPetitUd
3+
## [Unreleased]
4+
5+
## [0.3.2]
6+
7+
This _minor_ release fixes a fatal error when trying to resolve SEO data from private `Post` models.
8+
9+
- fix: Use `Post::$databaseId` to prevent fatal errors on private `contentNode`s. H/t @MonPetitUd
410

511
## [0.3.1]
612

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.3.1) ![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.3.2) ![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
@@ -6,4 +6,4 @@
66
*/
77

88
define( 'WPGRAPHQL_SEO_PLUGIN_FILE', 'wp-graphql-rank-math.php' );
9-
define( 'WPGRAPHQL_SEO_VERSION', '0.3.1' );
9+
define( 'WPGRAPHQL_SEO_VERSION', '0.3.2' );

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Tested up to: 6.6.1
66
Requires PHP: 7.4
77
Requires Plugins: wp-graphql, seo-by-rank-math
88
Requires WPGraphQL: 1.26.0
9-
Stable tag: 0.3.1
9+
Stable tag: 0.3.2
1010
License: GPL-3
1111
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1212

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' => 'e686be89e7571f21b175ed5e5329b7f39b740944',
6+
'reference' => '2cbeec18fb22d9b77a1a7ed7dff1c7b18b34ab85',
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' => 'e686be89e7571f21b175ed5e5329b7f39b740944',
25+
'reference' => '2cbeec18fb22d9b77a1a7ed7dff1c7b18b34ab85',
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.3.1
10+
* Version: 0.3.2
1111
* Text Domain: wp-graphql-rank-math
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
@@ -21,7 +21,7 @@
2121
* @package WPGraphQL\RankMath
2222
* @author axepress
2323
* @license GPL-3
24-
* @version 0.3.1
24+
* @version 0.3.2
2525
*/
2626

2727
declare( strict_types = 1 );
@@ -51,7 +51,7 @@
5151
function constants(): void {
5252
// Plugin version.
5353
if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
54-
define( 'WPGRAPHQL_SEO_VERSION', '0.3.1' );
54+
define( 'WPGRAPHQL_SEO_VERSION', '0.3.2' );
5555
}
5656

5757
// Plugin Folder Path.

0 commit comments

Comments
 (0)