Skip to content

Commit 167bdd4

Browse files
authored
release: v0.3.4 (#122)
* release: 0.3.4 * chore: changelog * chore: fix readme URL
1 parent d56ea24 commit 167bdd4

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## [0.3.4]
6+
7+
This _minor_ release adds support for WPGraphQL 2.3's new lazy-loading features, resulting in significant performance improvements. It also fixes a type conflict when using WPGraphQL for WooCommerce 0.21.1+.
8+
59
- fix: Fix type conflicts on Product interfaces in WooGraphQL 0.21.1+. Props @robbiebel 🙌
610
- dev: Add support for lazy-loading GraphQL descriptions and deprecation messages.
711
- chore: bump PHPStan to v2.0.x

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

readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
Contributors: axepress, justlevine
33
Tags: GraphQL, Gatsby, Headless, WPGraphQL, React, Rest, RankMath, Seo, Schema
44
Requires at least: 6.0
5-
Tested up to: 6.8
5+
Tested up to: 6.8.1
66
Requires PHP: 7.4
7-
Stable tag: 0.3.3
8-
Maintained at: https://github.com/AxeWP/wp-graphql-headless-login
7+
Stable tag: 0.3.4
8+
Maintained at: https://github.com/AxeWP/wp-graphql-rank-math
99
License: GPL-3
1010
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1111

wp-graphql-rank-math.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
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.3
10+
* Version: 0.3.4
1111
* Text Domain: wp-graphql-rank-math
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
14-
* Tested up to: 6.8.0
14+
* Tested up to: 6.8.1
1515
* Requires PHP: 7.4
1616
* Requires Plugins: wp-graphql, seo-by-rank-math
1717
* WPGraphQL requires at least: 1.26.0
@@ -22,7 +22,6 @@
2222
* @package WPGraphQL\RankMath
2323
* @author axepress
2424
* @license GPL-3
25-
* @version 0.3.3
2625
*/
2726

2827
declare( strict_types = 1 );
@@ -52,7 +51,7 @@
5251
function constants(): void {
5352
// Plugin version.
5453
if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
55-
define( 'WPGRAPHQL_SEO_VERSION', '0.3.3' );
54+
define( 'WPGRAPHQL_SEO_VERSION', '0.3.4' );
5655
}
5756

5857
// Plugin Folder Path.

0 commit comments

Comments
 (0)