Skip to content

Commit 8eb70b8

Browse files
authored
Merge pull request #37 from justlevine/release/0.0.10
release: v0.0.10
2 parents 1df3b45 + 837d577 commit 8eb70b8

File tree

10 files changed

+19
-43
lines changed

10 files changed

+19
-43
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Changelog
22

3-
## Unreleased
3+
## v0.0.10
44
- dev: check plugin dependency versions.
55
- dev: namespace Composer dependencies with Strauss.
66
- dev: wrap global functions in `function_exists()` checks.
77
- chore: update WPGraphQL Plugin Boilerplate dependency to v0.0.8.
8+
- ci: add coverage reports to CodeClimate.
9+
- tests: Regenerate _support classes.
810

911
## v0.0.9
1012
- chore: update WPGraphQL Plugin Boilerplate dependency to v0.0.7.

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.0.9) ![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.10) ![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
@@ -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.9' );
10+
define( 'WPGRAPHQL_SEO_VERSION', '0.0.10' );

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.1
66
Requires PHP: 7.4
77
Requires WPGraphQL: 1.8.1
8-
Stable tag: 0.0.9
8+
Stable tag: 0.0.10
99
License: GPL-3
1010
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1111

tests/_support/AcceptanceTesterActions.php

Lines changed: 0 additions & 26 deletions
This file was deleted.

tests/_support/WpunitTesterActions.php renamed to tests/_support/WpunitTester.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
*
1717
* @SuppressWarnings(PHPMD)
1818
*/
19-
class WpunitTesterActions extends \Codeception\Actor
19+
class WpunitTester extends \Codeception\Actor
2020
{
21-
use _generated\WpunitTesterActionsActions;
21+
use _generated\WpunitTesterActions;
2222

2323
/**
2424
* Define custom actions here

tests/acceptance.suite.dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Use WPDb to set up your initial database fixture.
66
# If you need both WPWebDriver and WPBrowser tests - create a separate suite.
77

8-
actor: AcceptanceTesterActions
8+
actor: AcceptanceTester
99
modules:
1010
enabled:
1111
- Asserts

tests/wpunit.suite.dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Codeception Test Suite Configuration
22
#
33
# Suite for unit or integration tests that require WordPress functions and classes.
4-
actor: WpunitTesterActions
4+
actor: WpunitTester
55
modules:
66
enabled:
77
- WPLoader

vendor/composer/installed.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php return array(
22
'root' => array(
33
'name' => 'axepress/wp-graphql-rank-math',
4-
'pretty_version' => 'dev-main',
5-
'version' => 'dev-main',
6-
'reference' => '62f727170020b32f791b9f2618c8aebe66b16408',
4+
'pretty_version' => 'dev-develop',
5+
'version' => 'dev-develop',
6+
'reference' => '1df3b45aa65b76e44556a2fade70557edf50547d',
77
'type' => 'wordpress-plugin',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -20,9 +20,9 @@
2020
'dev_requirement' => false,
2121
),
2222
'axepress/wp-graphql-rank-math' => array(
23-
'pretty_version' => 'dev-main',
24-
'version' => 'dev-main',
25-
'reference' => '62f727170020b32f791b9f2618c8aebe66b16408',
23+
'pretty_version' => 'dev-develop',
24+
'version' => 'dev-develop',
25+
'reference' => '1df3b45aa65b76e44556a2fade70557edf50547d',
2626
'type' => 'wordpress-plugin',
2727
'install_path' => __DIR__ . '/../../',
2828
'aliases' => array(),

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.9
10+
* Version: 0.0.10
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.9
23+
* @version 0.0.10
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.9' );
56+
define( 'WPGRAPHQL_SEO_VERSION', '0.0.10' );
5757
}
5858

5959
// Plugin Folder Path.

0 commit comments

Comments
 (0)