Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Add changelog & version bump to 1.3.0-RC
Browse files Browse the repository at this point in the history
  • Loading branch information
ryelle committed Jan 14, 2019
1 parent 3ae7314 commit 994e237
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 7 deletions.
17 changes: 13 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -86,5 +86,14 @@
"composer run-script phpcs"
]
}
}
},
"files": [
"assets/**",
"build/**",
"includes/**",
"languages/**",
"license.txt",
"readme.txt",
"woocommerce-gutenberg-products-block.php"
]
}
19 changes: 18 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-gutenberg-products-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -15,7 +15,7 @@

defined( 'ABSPATH' ) || die();

define( 'WGPB_VERSION', '1.2.0' );
define( 'WGPB_VERSION', '1.3.0' );

define( 'WGPB_DEVELOPMENT_MODE', true );

Expand Down

0 comments on commit 994e237

Please sign in to comment.