diff --git a/plugins/woocommerce-blocks/package-lock.json b/plugins/woocommerce-blocks/package-lock.json index 37ca8e6a1f8..41122301da2 100644 --- a/plugins/woocommerce-blocks/package-lock.json +++ b/plugins/woocommerce-blocks/package-lock.json @@ -1,6 +1,6 @@ { "name": "@woocommerce/block-library", - "version": "2.0.0-rc2", + "version": "2.0.0-rc3", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -8873,7 +8873,7 @@ "dependencies": { "core-js": { "version": "1.2.7", - "resolved": "http://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" } } diff --git a/plugins/woocommerce-blocks/package.json b/plugins/woocommerce-blocks/package.json index 0002d478e84..f7bd85a56c0 100644 --- a/plugins/woocommerce-blocks/package.json +++ b/plugins/woocommerce-blocks/package.json @@ -2,7 +2,7 @@ "name": "@woocommerce/block-library", "title": "WooCommerce Blocks", "author": "Automattic", - "version": "2.0.0-rc2", + "version": "2.0.0-rc3", "description": "WooCommerce blocks for the Gutenberg editor.", "homepage": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/", "keywords": [ diff --git a/plugins/woocommerce-blocks/readme.txt b/plugins/woocommerce-blocks/readme.txt index 2e9b57815e1..2502cde9f7a 100644 --- a/plugins/woocommerce-blocks/readme.txt +++ b/plugins/woocommerce-blocks/readme.txt @@ -1,8 +1,8 @@ === WooCommerce Blocks === Contributors: automattic, claudiulodro, tiagonoronha, jameskoster, ryelle, levinmedia Tags: gutenberg, woocommerce, woo commerce, products -Requires at least: 4.9 -Tested up to: 5.0 +Requires at least: 5.0 +Tested up to: 5.1 Requires PHP: 5.2 Stable tag: 1.4.0 License: GPLv3 @@ -94,6 +94,7 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/ - Fix: Product titles render HTML correctly in preview - Fix: Icons are now aligned correctly in placeholders - Fix: Grid block preview column width now matches the front-end +- Fix: Webpack now builds using a custom jsonp callback, fixing possible collisions with other projects - API: Change namespace, endpoints now accessed at `/wc-blocks/v1/*` - API: Add `catalog_visibility` parameter for fetching products - API: Update structure of attribute term endpoint to return `attribute.slug`, `attribute.name` etc diff --git a/plugins/woocommerce-blocks/woocommerce-gutenberg-products-block.php b/plugins/woocommerce-blocks/woocommerce-gutenberg-products-block.php index 38985274855..392ff295544 100644 --- a/plugins/woocommerce-blocks/woocommerce-gutenberg-products-block.php +++ b/plugins/woocommerce-blocks/woocommerce-gutenberg-products-block.php @@ -3,11 +3,11 @@ * Plugin Name: WooCommerce Blocks * Plugin URI: https://github.com/woocommerce/woocommerce-gutenberg-products-block * Description: WooCommerce blocks for the Gutenberg editor. - * Version: 2.0.0-rc2 + * Version: 2.0.0-rc3 * Author: Automattic * Author URI: https://woocommerce.com * Text Domain: woo-gutenberg-products-block - * WC requires at least: 3.5 + * WC requires at least: 3.6 * WC tested up to: 3.6 * * @package WooCommerce\Blocks @@ -15,7 +15,7 @@ defined( 'ABSPATH' ) || die(); -define( 'WGPB_VERSION', '2.0.0-rc2' ); +define( 'WGPB_VERSION', '2.0.0-rc3' ); define( 'WGPB_PLUGIN_FILE', __FILE__ ); define( 'WGPB_ABSPATH', dirname( WGPB_PLUGIN_FILE ) . '/' );