Skip to content

Commit 38ef8c1

Browse files
committed
version numbers updated
1 parent c61a64b commit 38ef8c1

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: GraphQL, WooCommerce, WPGraphQL
44
Requires at least: 4.9
55
Tested up to: 5.2
66
Requires PHP: 5.6
7-
Stable tag: 0.3.0
7+
Stable tag: 0.3.2
88
License: GPL-3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010
Maintained at: https://github.com/wp-graphql/wp-graphql-woocommerce

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "wp-graphql/wp-graphql-woocommerce",
33
"description": "WooCommerce bindings for WPGraphQL",
4-
"version": "0.3.1",
4+
"version": "0.3.2",
55
"type": "wordpress-plugin",
66
"keywords": [
77
"wordpress",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
/**
3+
* Advanced Product Type
4+
*/
5+
class WC_Product_Advanced extends WC_Product_Simple {
6+
/**
7+
* Return the product type
8+
* @return string
9+
*/
10+
public function get_type() {
11+
return 'advanced';
12+
}
13+
}

wp-graphql-woocommerce.php

+2-2
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.3.1
6+
* Version: 0.3.2
77
* Author: kidunot89
88
* Author URI: https://axistaylor.com
99
* Text Domain: wp-graphql-woocommerce
@@ -39,7 +39,7 @@
3939
function wp_graphql_woocommerce_constants() {
4040
// Plugin version.
4141
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) {
42-
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.3.1' );
42+
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.3.2' );
4343
}
4444
// Plugin Folder Path.
4545
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {

0 commit comments

Comments
 (0)