diff --git a/assets/css/style.scss b/assets/css/style.scss index 6deb4f84d66..02fcfe3879e 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -26,6 +26,8 @@ img { vertical-align: middle; + margin-left: auto; + margin-right: auto; } } diff --git a/package-lock.json b/package-lock.json index 6290a091db2..c2a963e7445 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@woocommerce/block-library", - "version": "2.2.0-dev", + "version": "2.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6d2ef7bea35..15472580dfd 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@woocommerce/block-library", "title": "WooCommerce Blocks", "author": "Automattic", - "version": "2.2.0-dev", + "version": "2.2.0", "description": "WooCommerce blocks for the Gutenberg editor.", "homepage": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/", "keywords": [ @@ -105,7 +105,7 @@ ], "files": [ "assets/**/*.{js,scss,php}", - "build/**/*.{js,css}", + "build/**/*.{js,json,css}", "includes/**/*.php", "languages/**/*.json", "license.txt", diff --git a/readme.txt b/readme.txt index a8aff023e2e..31982ad4510 100644 --- a/readme.txt +++ b/readme.txt @@ -83,6 +83,14 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/ == Changelog == += 2.2.0 - 2019-06-26 = + +- Feature: Add Product Categories List navigation block for showing a list of categories on your site. +- Enhancement: All grid blocks are now rendered directly by the blocks code, not using the shortcode. +- Enhancement: Brand the WooCommerce Blocks for better discoverability in the block inserter. +- Build: Update build process to dynamically generate required WordPress dependencies. +- Build: Update packages. + = 2.1.0 - 2019-05-14 = - Feature: Add focal point picker to the Featured Product block, so you can adjust the background image position (only available on WP 5.2+ or with Gutenberg plugin). diff --git a/woocommerce-gutenberg-products-block.php b/woocommerce-gutenberg-products-block.php index 4037bbf7eae..0a557b71947 100644 --- a/woocommerce-gutenberg-products-block.php +++ b/woocommerce-gutenberg-products-block.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Blocks * Plugin URI: https://github.com/woocommerce/woocommerce-gutenberg-products-block * Description: WooCommerce blocks for the Gutenberg editor. - * Version: 2.2.0-dev + * Version: 2.2.0 * Author: Automattic * Author URI: https://woocommerce.com * Text Domain: woo-gutenberg-products-block @@ -15,7 +15,7 @@ defined( 'ABSPATH' ) || die(); -define( 'WGPB_VERSION', '2.2.0-dev' ); +define( 'WGPB_VERSION', '2.2.0' ); define( 'WGPB_PLUGIN_FILE', __FILE__ ); define( 'WGPB_ABSPATH', dirname( WGPB_PLUGIN_FILE ) . '/' );