diff --git a/CHANGELOG.md b/CHANGELOG.md index ad31904..6d5863b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased +## v0.1.1 + +This _minor_ release adds support for more social fields in the `RankMathSocialMetaSettings` and `RankMathUserSeo` types. Additionally, it fixes a bug where the `seo.openGraph.image` field would fail to resolve if provided a string image. + +There are **no breaking changes**. + +### What's changed + - feat: Expose `additionalProfiles` field on `RankMathSocialMetaSettings`. props: @colis 🙌 - feat: Expose `facebookProfileUrl`, `twitterUserName`, and `additionalProfiles` social fields on `RankMathUserSeo`. props: @colis 🙌 - fix: Correctly resolve `seo.openGraph.image` field when parsed value is a string. diff --git a/README.md b/README.md index c359916..750fdf5 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.1.0) ![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.1.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)
![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 9e0f51e..f25fce3 100644 --- a/phpstan/constants.php +++ b/phpstan/constants.php @@ -7,4 +7,4 @@ define( 'WPGRAPHQL_SEO_AUTOLOAD', true ); define( 'WPGRAPHQL_SEO_PLUGIN_FILE', 'wp-graphql-rank-math.php' ); -define( 'WPGRAPHQL_SEO_VERSION', '0.1.0' ); +define( 'WPGRAPHQL_SEO_VERSION', '0.1.1' ); diff --git a/readme.txt b/readme.txt index 9db1d45..962ad21 100644 --- a/readme.txt +++ b/readme.txt @@ -2,10 +2,10 @@ Contributors: axepress, justlevine Tags: GraphQL, Gatsby, Headless, WPGraphQL, React, Rest, RankMath, Seo, Schema Requires at least: 6.0 -Tested up to: 6.4.2 +Tested up to: 6.4.3 Requires PHP: 7.4 Requires WPGraphQL: 1.14.0 -Stable tag: 0.1.0 +Stable tag: 0.1.1 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 bfea39b..e956121 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.1.0 + * Version: 0.1.1 * Text Domain: wp-graphql-rank-math * Domain Path: /languages * Requires at least: 6.0 @@ -20,7 +20,7 @@ * @package WPGraphQL\RankMath * @author axepress * @license GPL-3 - * @version 0.1.0 + * @version 0.1.1 */ // Exit if accessed directly. @@ -53,7 +53,7 @@ function graphql_seo_constants(): void { // Plugin version. if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) { - define( 'WPGRAPHQL_SEO_VERSION', '0.1.0' ); + define( 'WPGRAPHQL_SEO_VERSION', '0.1.1' ); } // Plugin Folder Path.