Skip to content

Commit ddf7661

Browse files
committed
Minor patches applied
1 parent 673ce74 commit ddf7661

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

.github/workflows/continous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Automated Testing
1+
name: Automated-Testing
22

33
on:
44
schedule:

.github/workflows/lint-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Coding Standards
1+
name: Coding-Standards
22

33
on:
44
push:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<a href="https://woographql.com/" target="_blank">Docs</a> • <a href="https://www.axistaylor.com" target="_blank">AxisTaylor</a> • <a href="https://wpgql-slack.herokuapp.com/" target="_blank">Join Slack</a>
66

7-
[![Automated Testing](https://github.com/wp-graphql/wp-graphql-woocommerce/workflows/continuous_integration/badge.svg)](https://github.com/wp-graphql/wp-graphql-woocommerce/actions?query=workflow%3A%22Automated+Testing%22) [![Coding Standards](https://github.com/wp-graphql/wp-graphql-woocommerce/workflows/lint_code/badge.svg)](https://github.com/wp-graphql/wp-graphql-woocommerce/actions?query=workflow%3A%22Coding+Standards%22) [![Coverage Status](https://coveralls.io/repos/github/wp-graphql/wp-graphql-woocommerce/badge.svg?branch=develop)](https://coveralls.io/github/wp-graphql/wp-graphql-woocommerce?branch=develop) [![Financial Contributors on Open Collective](https://opencollective.com/woographql/all/badge.svg?label=financial+contributors)](https://opencollective.com/woographql)
7+
[![Automated-Testing](https://github.com/wp-graphql/wp-graphql-woocommerce/workflows/continuous_integration/badge.svg)](https://github.com/wp-graphql/wp-graphql-woocommerce/actions?query=workflow%3A%22Automated-Testing%22) [![Coding-Standards](https://github.com/wp-graphql/wp-graphql-woocommerce/workflows/lint_code/badge.svg)](https://github.com/wp-graphql/wp-graphql-woocommerce/actions?query=workflow%3A%22Coding-Standards%22) [![Coverage Status](https://coveralls.io/repos/github/wp-graphql/wp-graphql-woocommerce/badge.svg?branch=develop)](https://coveralls.io/github/wp-graphql/wp-graphql-woocommerce?branch=develop) [![Financial Contributors on Open Collective](https://opencollective.com/woographql/all/badge.svg?label=financial+contributors)](https://opencollective.com/woographql)
88

99
## Quick Install
1010

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Requires PHP: 7.0
77
Requires WooCommerce: 4.7.0
88
Requires WPGraphQL: 0.13.4+
99
Works with WPGraphQL-JWT-Authentication: 0.4.0+
10-
Stable tag: 0.6.0
10+
Stable tag: 0.6.1
1111
License: GPL-3
1212
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1313
Maintained at: https://github.com/wp-graphql/wp-graphql-woocommerce

includes/connection/class-products.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,6 @@ function() {
187187
'resolve' => function( $source, array $args, AppContext $context, ResolveInfo $info ) {
188188
$resolver = new Product_Connection_Resolver( $source, $args, $context, $info );
189189

190-
\codecept_debug( $source->variations_ids );
191190
$resolver->set_query_arg( 'post_parent', $source->ID );
192191
$resolver->set_query_arg( 'post_type', 'product_variation' );
193192
$resolver->set_query_arg( 'post__in', $source->variation_ids );

wp-graphql-woocommerce.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WPGraphQL WooCommerce (WooGraphQL)
44
* Plugin URI: https://github.com/kidunot89/wp-graphql-woocommerce
55
* Description: Adds Woocommerce Functionality to WPGraphQL schema.
6-
* Version: 0.6.0
6+
* Version: 0.6.1
77
* Author: kidunot89
88
* Author URI: https://axistaylor.com
99
* Text Domain: wp-graphql-woocommerce
@@ -45,7 +45,7 @@
4545
function woographql_constants() {
4646
// Plugin version.
4747
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) {
48-
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.6.0' );
48+
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.6.1' );
4949
}
5050
// Plugin Folder Path.
5151
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {

0 commit comments

Comments
 (0)