Skip to content

Commit 966ab37

Browse files
authored
chore: version numbers set and CHANGELOG updated. (#807)
1 parent 6b0c798 commit 966ab37

9 files changed

+21
-12
lines changed

CHANGELOG.md

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

3+
## [v0.18.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.18.0) (2023-09-23)
4+
5+
[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.17.0...v0.18.0)
6+
7+
**New Features:**
8+
9+
- feat: Hooks added to Authorizing URL functionality [\#806](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/806) ([kidunot89](https://github.com/kidunot89))
10+
- feat: `collectionStats` query added [\#785](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/785) ([kidunot89](https://github.com/kidunot89))
11+
312
## [v0.17.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.17.0) (2023-09-18)
413

514
[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.16.0...v0.17.0)

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Requires PHP: 7.2
77
Requires WooCommerce: 7.5.0
88
Requires WPGraphQL: 1.14.0+
99
Works with WPGraphQL-JWT-Authentication: 0.7.0+
10-
Stable tag: 0.17.0
10+
Stable tag: 0.18.0
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/type/enum/class-attribute-operator-enum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* WPEnum Type - AttributeOperatorEnum
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPEnum
6-
* @since TBD
6+
* @since 0.18.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPEnum;

includes/type/enum/class-product-attribute-enum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* WPEnum Type - ProductAttributeEnum
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPEnum
6-
* @since TBD
6+
* @since 0.18.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPEnum;

includes/type/input/class-collection-stats-query-input.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* WPInputObjectType - CollectionStatsQueryInput
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInputObject
6-
* @since TBD
6+
* @since 0.18.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInputObject;

includes/type/input/class-collection-stats-where-args.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* WPInputObjectType - CollectionStatsWhereArgs
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInputObject
6-
* @since TBD
6+
* @since 0.18.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInputObject;

includes/type/input/class-product-attribute-filter-input.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* WPInputObjectType - ProductAttributeFilterInput
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInputObject
6-
* @since TBD
6+
* @since 0.18.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInputObject;

includes/type/object/class-collection-stats-type.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* WPObject Type - Collection_Stats_Type
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPObject
6-
* @since TBD
6+
* @since 0.18.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPObject;

wp-graphql-woocommerce.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
* Plugin Name: WPGraphQL WooCommerce (WooGraphQL)
44
* Plugin URI: https://github.com/wp-graphql/wp-graphql-woocommerce
55
* Description: Adds Woocommerce Functionality to WPGraphQL schema.
6-
* Version: 0.17.0
6+
* Version: 0.18.0
77
* Author: kidunot89
88
* Author URI: https://axistaylor.com
99
* Text Domain: wp-graphql-woocommerce
1010
* Domain Path: /languages
1111
* License: GPL-3
1212
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
13-
* WC requires at least: 7.5.0
14-
* WC tested up to: 7.9.0
15-
* WPGraphQL requires at least: 1.14.0+
13+
* WC requires at least: 7.9.0
14+
* WC tested up to: 8.1.1
15+
* WPGraphQL requires at least: 1.16.0+
1616
* WPGraphQL-JWT-Authentication requires at least: 0.7.0+
1717
*
1818
* @package WPGraphQL\WooCommerce
@@ -33,7 +33,7 @@
3333
function constants() {
3434
// Plugin version.
3535
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) {
36-
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.17.0' );
36+
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.18.0' );
3737
}
3838
// Plugin Folder Path.
3939
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {

0 commit comments

Comments
 (0)