Skip to content

Commit adffa3f

Browse files
authored
chore: version bump (#7)
1 parent e47c942 commit adffa3f

File tree

5 files changed

+24
-11
lines changed

5 files changed

+24
-11
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## v0.0.3
4+
- fix: Ensure `Model\Seo::focus_keywords` callback returns an array.
5+
- fix: Keep `composer.lock` and production `vendor` deps in repository.
6+
- dev!: Rename `Model\Seo::get_rest_url()` to `Model\Seo::get_rest_url_param()`
7+
- dev!: Remove `Utils\Paper` class in favor of `RankMath\Paper::reset()`
8+
- dev!: Bump minimum version of RankMath to `v1.0.90`
9+
- dev: Replace `wp_remote_get()` call with `rest_do_request()` when querying `seo.fullHead`.
10+
- dev: Update `composer.json` meta.
11+
- ci: Update WP & PHP versions used for tests.
12+
- chore: Update composer deps.
13+
- chore: Remove unnecessary PHPStan `ignore` rule.
14+
- chore: fix PHPCompatibilityWP `testVersion` when linting with `phpcs`.
15+
316
## v0.0.2
417
- Feat: Add `breadcrumbs` trail to `BaseSeoFields`.
518

phpstan/constants.php

Lines changed: 1 addition & 1 deletion
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.2' );
10+
define( 'WPGRAPHQL_SEO_VERSION', '0.0.3' );

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Requires at least: 5.4.1
55
Tested up to: 6.0.1
66
Requires PHP: 7.4
77
Requires WPGraphQL: 1.8.0
8-
Stable tag: 0.0.2
8+
Stable tag: 0.0.3
99
License: GPL-3
1010
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1111

vendor/composer/installed.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php return array(
22
'root' => array(
3-
'pretty_version' => 'dev-feat--use-Paper--reset()',
4-
'version' => 'dev-feat--use-Paper--reset()',
3+
'pretty_version' => 'dev-develop',
4+
'version' => 'dev-develop',
55
'type' => 'wordpress-plugin',
66
'install_path' => __DIR__ . '/../../',
77
'aliases' => array(),
8-
'reference' => '06a2292c7b738290cbf860a098560e5d71ee9eb3',
8+
'reference' => 'e47c942d78e7f455207e46c1b071f4de3f005aa6',
99
'name' => 'axepress/wp-graphql-rank-math',
1010
'dev' => false,
1111
),
@@ -20,12 +20,12 @@
2020
'dev_requirement' => false,
2121
),
2222
'axepress/wp-graphql-rank-math' => array(
23-
'pretty_version' => 'dev-feat--use-Paper--reset()',
24-
'version' => 'dev-feat--use-Paper--reset()',
23+
'pretty_version' => 'dev-develop',
24+
'version' => 'dev-develop',
2525
'type' => 'wordpress-plugin',
2626
'install_path' => __DIR__ . '/../../',
2727
'aliases' => array(),
28-
'reference' => '06a2292c7b738290cbf860a098560e5d71ee9eb3',
28+
'reference' => 'e47c942d78e7f455207e46c1b071f4de3f005aa6',
2929
'dev_requirement' => false,
3030
),
3131
),

wp-graphql-rank-math.php

Lines changed: 3 additions & 3 deletions
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.2
10+
* Version: 0.0.3
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.2
23+
* @version 0.0.3
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.2' );
56+
define( 'WPGRAPHQL_SEO_VERSION', '0.0.3' );
5757
}
5858

5959
// Plugin Folder Path.

0 commit comments

Comments
 (0)