Skip to content

Commit a7f3938

Browse files
authored
release: 0.0.14 (#58)
* chore: version bump * chore: update changelog
1 parent 6f8216f commit a7f3938

File tree

7 files changed

+31
-28
lines changed

7 files changed

+31
-28
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## v0.0.14
46
- fix: Fetch the correct SEO data when resolving custom taxonomy terms. Props @lucguerraz
57
- dev!: Move `SEO::$global_authordata` property to the `UserSeo` model and make nullable.
68
- dev: Move `seo.breadcrumbs` resolution from the `RankMathSeo` interface to the `SEO` model.
9+
- chore: Update Composer dev-dependencies.
710

811
## v0.0.13
912
- feat: Expose Redirections to the GraphQL schema.

README.md

+2-2
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.0.13) ![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.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)<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)
@@ -68,7 +68,7 @@ Priority support and custom development is available to [our Sponsors](https://g
6868
* [x] Authors (users)
6969
* [ ] Image attributes.
7070
* [x] Sitemaps
71-
* [ ] Redirections
71+
* [x] Redirections
7272
* [ ] 404 Monitor
7373
* [ ] Local SEO and Knowledgegraph
7474
* [ ] RSS Feeds

composer.lock

+19-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpstan/constants.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
define( 'WPGRAPHQL_SEO_AUTOLOAD', true );
99
define( 'WPGRAPHQL_SEO_PLUGIN_FILE', 'wp-graphql-rank-math.php' );
10-
define( 'WPGRAPHQL_SEO_VERSION', '0.0.13' );
10+
define( 'WPGRAPHQL_SEO_VERSION', '0.0.14' );

readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Requires at least: 5.4.1
55
Tested up to: 6.2.2
66
Requires PHP: 7.4
77
Requires WPGraphQL: 1.8.1
8-
Stable tag: 0.0.13
8+
Stable tag: 0.0.14
99
License: GPL-3
1010
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1111

vendor/composer/installed.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => 'axepress/wp-graphql-rank-math',
44
'pretty_version' => 'dev-develop',
55
'version' => 'dev-develop',
6-
'reference' => '1e51dd97d77c78b1bab5350faff53d9cb424931b',
6+
'reference' => '6f8216fc98c4aa833ae5b47aea42f44d41d74507',
77
'type' => 'wordpress-plugin',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -22,7 +22,7 @@
2222
'axepress/wp-graphql-rank-math' => array(
2323
'pretty_version' => 'dev-develop',
2424
'version' => 'dev-develop',
25-
'reference' => '1e51dd97d77c78b1bab5350faff53d9cb424931b',
25+
'reference' => '6f8216fc98c4aa833ae5b47aea42f44d41d74507',
2626
'type' => 'wordpress-plugin',
2727
'install_path' => __DIR__ . '/../../',
2828
'aliases' => array(),

wp-graphql-rank-math.php

+3-3
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.0.13
10+
* Version: 0.0.14
1111
* Text Domain: wp-graphql-rank-math
1212
* Domain Path: /languages
1313
* Requires at least: 5.4.1
@@ -20,7 +20,7 @@
2020
* @package WPGraphQL\RankMath
2121
* @author axepress
2222
* @license GPL-3
23-
* @version 0.0.13
23+
* @version 0.0.14
2424
*/
2525

2626
// Exit if accessed directly.
@@ -53,7 +53,7 @@
5353
function graphql_seo_constants(): void {
5454
// Plugin version.
5555
if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
56-
define( 'WPGRAPHQL_SEO_VERSION', '0.0.13' );
56+
define( 'WPGRAPHQL_SEO_VERSION', '0.0.14' );
5757
}
5858

5959
// Plugin Folder Path.

0 commit comments

Comments
 (0)