Skip to content

Commit 477ff13

Browse files
authored
release: 0.3.3 (#117)
1 parent 4cd0d40 commit 477ff13

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22

33
## [Unreleased]
44

5-
- chore: test compatibility with WordPress 6.7.2 and WPGraphQL 2.0.0.
5+
## [0.3.3]
6+
7+
This _minor_ release adds a GraphQL Debug message to the response when attempting to use `Page.seo` for the Posts Archive. It also tests compatibility with WordPress 6.7.2 and WPGraphQL 2.0.0.
8+
69
- dev: Add GraphQL Debug message to response when attempting to use `Page.seo` for the Posts Archive. H/t @amoyanoakqa
10+
- chore: test compatibility with WordPress 6.7.2 and WPGraphQL 2.0.0.
711
- chore: Update Composer dev-deps.
812

913
## [0.3.2]
@@ -55,7 +59,7 @@ query GetContentNodeSeo {
5559
# since `seo` is always a `RankMathPostObjectSeo` type.
5660
...MyPostSeoFragment
5761

58-
# This needs to be removed, since `Post` isnt a `User`
62+
# This needs to be removed, since `Post` isn't a `User`
5963
... on RankMathUserSeo {
6064
...MyUserSeoFragment
6165
}
@@ -131,7 +135,7 @@ This _minor_ release bumps the plugin version to 0.1.0! However, there are **no
131135

132136
Additionally, we fixed a few bugs regarding `seo.openGraph` resolution, and deprecated a setting that was removed in RankMath v1.0.211.
133137

134-
The reason for the version bump is to make it easier to update future releases in accordance with our [versioning policy](README.md#updating-and-versioning). While the plugin version number is indicative of the (projected) schema maturity and not the underlying code (which has been used in enteprise production environments for almost two years), the new features and improvements that would warrant major changes to the schema are currently blocked upstream. By bumping to v0.1.0, we can continue to push patch releases in the meantime without users having to worry about breaking changes.
138+
The reason for the version bump is to make it easier to update future releases in accordance with our [versioning policy](README.md#updating-and-versioning). While the plugin version number is indicative of the (projected) schema maturity and not the underlying code (which has been used in enterprise production environments for almost two years), the new features and improvements that would warrant major changes to the schema are currently blocked upstream. By bumping to v0.1.0, we can continue to push patch releases in the meantime without users having to worry about breaking changes.
135139

136140
### What's changed
137141

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.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 />
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.3) ![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.2' );
9+
define( 'WPGRAPHQL_SEO_VERSION', '0.3.3' );

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: GraphQL, Gatsby, Headless, WPGraphQL, React, Rest, RankMath, Seo, Schema
44
Requires at least: 6.0
55
Tested up to: 6.7.2
66
Requires PHP: 7.4
7-
Stable tag: 0.3.2
7+
Stable tag: 0.3.3
88
Maintained at: https://github.com/AxeWP/wp-graphql-headless-login
99
License: GPL-3
1010
License URI: https://www.gnu.org/licenses/gpl-3.0.html

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.2
10+
* Version: 0.3.3
1111
* Text Domain: wp-graphql-rank-math
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
@@ -22,7 +22,7 @@
2222
* @package WPGraphQL\RankMath
2323
* @author axepress
2424
* @license GPL-3
25-
* @version 0.3.2
25+
* @version 0.3.3
2626
*/
2727

2828
declare( strict_types = 1 );
@@ -52,7 +52,7 @@
5252
function constants(): void {
5353
// Plugin version.
5454
if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
55-
define( 'WPGRAPHQL_SEO_VERSION', '0.3.2' );
55+
define( 'WPGRAPHQL_SEO_VERSION', '0.3.3' );
5656
}
5757

5858
// Plugin Folder Path.

0 commit comments

Comments
 (0)