diff --git a/CHANGELOG.md b/CHANGELOG.md index 18e3be1..7dfd1f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,12 @@ ## Unreleased +## v0.0.15 + - chore: Update Composer dev-dependencies. - chore: Update WPGraphQL Coding Standards to v2.0.0-beta and lint. +- chore: Fix minimum supported WordPress version to be 5.6, which is the minimum requirement for RankMath 1.0.90. - ci: Test Plugin compatibility with WordPress 6.3. -- chore: fix minimum supported WordPress version to be 5.6, which is the minimum requirement for RankMath 1.0.90. ## v0.0.14 - fix: Fetch the correct SEO data when resolving custom taxonomy terms. Props @lucguerraz diff --git a/README.md b/README.md index 4883115..4c8aa93 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.0.14) ![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.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)
![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 ca09739..6e74c52 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.0.14' ); +define( 'WPGRAPHQL_SEO_VERSION', '0.0.15' ); diff --git a/readme.txt b/readme.txt index a029da3..2584e3e 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Requires at least: 5.6 Tested up to: 6.3.1 Requires PHP: 7.4 Requires WPGraphQL: 1.8.1 -Stable tag: 0.0.14 +Stable tag: 0.0.15 License: GPL-3 License URI: https://www.gnu.org/licenses/gpl-3.0.html diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index af0e19b..3763895 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => 'axepress/wp-graphql-rank-math', 'pretty_version' => 'dev-develop', 'version' => 'dev-develop', - 'reference' => 'a7f0c1c0c232ba9d1e6908d84d6b1f9e5b181c5e', + 'reference' => '41aed3861bd752fb8eeb4fb21346a87fb042180c', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -22,7 +22,7 @@ 'axepress/wp-graphql-rank-math' => array( 'pretty_version' => 'dev-develop', 'version' => 'dev-develop', - 'reference' => 'a7f0c1c0c232ba9d1e6908d84d6b1f9e5b181c5e', + 'reference' => '41aed3861bd752fb8eeb4fb21346a87fb042180c', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), diff --git a/wp-graphql-rank-math.php b/wp-graphql-rank-math.php index 002f501..45f22bf 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.0.14 + * Version: 0.0.15 * Text Domain: wp-graphql-rank-math * Domain Path: /languages * Requires at least: 5.6 @@ -20,7 +20,7 @@ * @package WPGraphQL\RankMath * @author axepress * @license GPL-3 - * @version 0.0.14 + * @version 0.0.15 */ // 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.0.14' ); + define( 'WPGRAPHQL_SEO_VERSION', '0.0.15' ); } // Plugin Folder Path.