Skip to content

Commit

Permalink
Merge pull request #200 from wp-graphql/release-v0.3.2
Browse files Browse the repository at this point in the history
Release v0.3.2
  • Loading branch information
kidunot89 authored Dec 21, 2019
2 parents c61a64b + 38ef8c1 commit b4a02b0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: GraphQL, WooCommerce, WPGraphQL
Requires at least: 4.9
Tested up to: 5.2
Requires PHP: 5.6
Stable tag: 0.3.0
Stable tag: 0.3.2
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Maintained at: https://github.com/wp-graphql/wp-graphql-woocommerce
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wp-graphql/wp-graphql-woocommerce",
"description": "WooCommerce bindings for WPGraphQL",
"version": "0.3.1",
"version": "0.3.2",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
Expand Down
13 changes: 13 additions & 0 deletions tests/_support/Utils/class-wc-product-advanced.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php
/**
* Advanced Product Type
*/
class WC_Product_Advanced extends WC_Product_Simple {
/**
* Return the product type
* @return string
*/
public function get_type() {
return 'advanced';
}
}
4 changes: 2 additions & 2 deletions wp-graphql-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WPGraphQL WooCommerce (WooGraphQL)
* Plugin URI: https://github.com/kidunot89/wp-graphql-woocommerce
* Description: Adds Woocommerce Functionality to WPGraphQL schema.
* Version: 0.3.1
* Version: 0.3.2
* Author: kidunot89
* Author URI: https://axistaylor.com
* Text Domain: wp-graphql-woocommerce
Expand Down Expand Up @@ -39,7 +39,7 @@
function wp_graphql_woocommerce_constants() {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) {
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.3.1' );
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.3.2' );
}
// Plugin Folder Path.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {
Expand Down

0 comments on commit b4a02b0

Please sign in to comment.