diff --git a/CHANGELOG.md b/CHANGELOG.md index e65370e..768a80f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,12 @@ ## [Unreleased] -- chore: test compatibility with WordPress 6.7.2 and WPGraphQL 2.0.0. +## [0.3.3] + +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. + - dev: Add GraphQL Debug message to response when attempting to use `Page.seo` for the Posts Archive. H/t @amoyanoakqa +- chore: test compatibility with WordPress 6.7.2 and WPGraphQL 2.0.0. - chore: Update Composer dev-deps. ## [0.3.2] @@ -55,7 +59,7 @@ query GetContentNodeSeo { # since `seo` is always a `RankMathPostObjectSeo` type. ...MyPostSeoFragment - # This needs to be removed, since `Post` isnt a `User` + # This needs to be removed, since `Post` isn't a `User` ... on RankMathUserSeo { ...MyUserSeoFragment } @@ -131,7 +135,7 @@ This _minor_ release bumps the plugin version to 0.1.0! However, there are **no Additionally, we fixed a few bugs regarding `seo.openGraph` resolution, and deprecated a setting that was removed in RankMath v1.0.211. -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. +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. ### What's changed diff --git a/README.md b/README.md index e12b596..831d57f 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Adds WPGraphQL support for [Rank Math SEO](https://rankmath.com/). Built with [W ----- -![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)
+![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)
![CodeQuality](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-quality.yml?branch=develop&label=Code%20Quality) ![Integration Tests](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/integration-testing.yml?branch=develop&label=Integration%20Testing) ![Coding Standards](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-standard.yml?branch=develop&label=WordPress%20Coding%20Standards) diff --git a/phpstan/constants.php b/phpstan/constants.php index 1160350..2498cce 100644 --- a/phpstan/constants.php +++ b/phpstan/constants.php @@ -6,4 +6,4 @@ */ define( 'WPGRAPHQL_SEO_PLUGIN_FILE', 'wp-graphql-rank-math.php' ); -define( 'WPGRAPHQL_SEO_VERSION', '0.3.2' ); +define( 'WPGRAPHQL_SEO_VERSION', '0.3.3' ); diff --git a/readme.txt b/readme.txt index dfc68c0..ec2c507 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: GraphQL, Gatsby, Headless, WPGraphQL, React, Rest, RankMath, Seo, Schema Requires at least: 6.0 Tested up to: 6.7.2 Requires PHP: 7.4 -Stable tag: 0.3.2 +Stable tag: 0.3.3 Maintained at: https://github.com/AxeWP/wp-graphql-headless-login License: GPL-3 License URI: https://www.gnu.org/licenses/gpl-3.0.html diff --git a/wp-graphql-rank-math.php b/wp-graphql-rank-math.php index daf07ea..5e87461 100644 --- a/wp-graphql-rank-math.php +++ b/wp-graphql-rank-math.php @@ -7,7 +7,7 @@ * Author: AxePress * Author URI: https://github.com/AxeWP * Update URI: https://github.com/AxeWP/wp-graphql-rank-math - * Version: 0.3.2 + * Version: 0.3.3 * Text Domain: wp-graphql-rank-math * Domain Path: /languages * Requires at least: 6.0 @@ -22,7 +22,7 @@ * @package WPGraphQL\RankMath * @author axepress * @license GPL-3 - * @version 0.3.2 + * @version 0.3.3 */ declare( strict_types = 1 ); @@ -52,7 +52,7 @@ function constants(): void { // Plugin version. if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) { - define( 'WPGRAPHQL_SEO_VERSION', '0.3.2' ); + define( 'WPGRAPHQL_SEO_VERSION', '0.3.3' ); } // Plugin Folder Path.