diff --git a/package.json b/package.json index 09128acc978..3f178c9817d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "woocommerceproductsblock", - "title": "WooCommerce Products Block", - "version": "3.3.0", + "name": "woocommerce-product-blocks", + "title": "WooCommerce Blocks", + "version": "1.3.0", "homepage": "https://woocommerce.com/", "repository": { "type": "git", @@ -86,5 +86,14 @@ "composer run-script phpcs" ] } - } + }, + "files": [ + "assets/**", + "build/**", + "includes/**", + "languages/**", + "license.txt", + "readme.txt", + "woocommerce-gutenberg-products-block.php" + ] } diff --git a/readme.txt b/readme.txt index 98d8e877550..14313585b88 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: gutenberg, woocommerce, woo commerce, products Requires at least: 4.9 Tested up to: 5.0 Requires PHP: 5.2 -Stable tag: 1.2.0 +Stable tag: 1.3.0 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -64,6 +64,23 @@ Yes you can! Join in on our [GitHub repository](https://github.com/woocommerce/w == Changelog == +== 1.3.0 - 2019-01-15 = + +- Feature: Added new blocks: "Featured Product", "Hand-picked Products", "Best Selling Products", "Newest Products", "On Sale Products", "Top Rated Products" +- Enhancement: Create new "WooCommerce" block category, all blocks are found there now +- Enhancement: Added a control to "Products by Category" block to control whether products need to match any selected categories or all selected categories +- Fix: Fixed a bug in "Products by Category" block where all products would display if no category was selected +- Legacy block: Remove legacy "Products" block from being shown in the block inserter (still loading the block for an existing uses) +- Legacy block: Fix an issue with imageless products in the legacy "Products" block. +- Components: Add new Control components `ProductControl`, `ProductsControl`, `ProductOrderbyControl` +- Components: Update `SearchListControl` to allow selecting a single item +- API: Add `cat_operator` support to products endpoint +- API: Add product `description` & `short_description` to each product +- API: Add attribute group names to each attribute +- Build: Update packages +- Build: Add cssnano to minify CSS +- Build: Split out node_modules code into separate vendors files + == 1.2.0 - 2018-12-04 = * Feature - Stand-alone product category block with improved category selection interface. * Fix - All users who can edit posts can now use these blocks thanks to a new set of API endpoints allowing view access to products, product categories, and product attributes. diff --git a/woocommerce-gutenberg-products-block.php b/woocommerce-gutenberg-products-block.php index 2f221a0107a..e52e11cdb34 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: 1.3.0-dev + * Version: 1.3.0-RC * Author: Automattic * Author URI: https://woocommerce.com * Text Domain: woo-gutenberg-products-block @@ -15,7 +15,7 @@ defined( 'ABSPATH' ) || die(); -define( 'WGPB_VERSION', '1.2.0' ); +define( 'WGPB_VERSION', '1.3.0' ); define( 'WGPB_DEVELOPMENT_MODE', true );