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

Commit 994e237

Browse files
committed
Add changelog & version bump to 1.3.0-RC
1 parent 3ae7314 commit 994e237

File tree

3 files changed

+33
-7
lines changed

3 files changed

+33
-7
lines changed

package.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "woocommerceproductsblock",
3-
"title": "WooCommerce Products Block",
4-
"version": "3.3.0",
2+
"name": "woocommerce-product-blocks",
3+
"title": "WooCommerce Blocks",
4+
"version": "1.3.0",
55
"homepage": "https://woocommerce.com/",
66
"repository": {
77
"type": "git",
@@ -86,5 +86,14 @@
8686
"composer run-script phpcs"
8787
]
8888
}
89-
}
89+
},
90+
"files": [
91+
"assets/**",
92+
"build/**",
93+
"includes/**",
94+
"languages/**",
95+
"license.txt",
96+
"readme.txt",
97+
"woocommerce-gutenberg-products-block.php"
98+
]
9099
}

readme.txt

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: gutenberg, woocommerce, woo commerce, products
44
Requires at least: 4.9
55
Tested up to: 5.0
66
Requires PHP: 5.2
7-
Stable tag: 1.2.0
7+
Stable tag: 1.3.0
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -64,6 +64,23 @@ Yes you can! Join in on our [GitHub repository](https://github.com/woocommerce/w
6464

6565
== Changelog ==
6666

67+
== 1.3.0 - 2019-01-15 =
68+
69+
- Feature: Added new blocks: "Featured Product", "Hand-picked Products", "Best Selling Products", "Newest Products", "On Sale Products", "Top Rated Products"
70+
- Enhancement: Create new "WooCommerce" block category, all blocks are found there now
71+
- Enhancement: Added a control to "Products by Category" block to control whether products need to match any selected categories or all selected categories
72+
- Fix: Fixed a bug in "Products by Category" block where all products would display if no category was selected
73+
- Legacy block: Remove legacy "Products" block from being shown in the block inserter (still loading the block for an existing uses)
74+
- Legacy block: Fix an issue with imageless products in the legacy "Products" block.
75+
- Components: Add new Control components `ProductControl`, `ProductsControl`, `ProductOrderbyControl`
76+
- Components: Update `SearchListControl` to allow selecting a single item
77+
- API: Add `cat_operator` support to products endpoint
78+
- API: Add product `description` & `short_description` to each product
79+
- API: Add attribute group names to each attribute
80+
- Build: Update packages
81+
- Build: Add cssnano to minify CSS
82+
- Build: Split out node_modules code into separate vendors files
83+
6784
== 1.2.0 - 2018-12-04 =
6885
* Feature - Stand-alone product category block with improved category selection interface.
6986
* 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.

woocommerce-gutenberg-products-block.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WooCommerce Blocks
44
* Plugin URI: https://github.com/woocommerce/woocommerce-gutenberg-products-block
55
* Description: WooCommerce blocks for the Gutenberg editor.
6-
* Version: 1.3.0-dev
6+
* Version: 1.3.0-RC
77
* Author: Automattic
88
* Author URI: https://woocommerce.com
99
* Text Domain: woo-gutenberg-products-block
@@ -15,7 +15,7 @@
1515

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

18-
define( 'WGPB_VERSION', '1.2.0' );
18+
define( 'WGPB_VERSION', '1.3.0' );
1919

2020
define( 'WGPB_DEVELOPMENT_MODE', true );
2121

0 commit comments

Comments
 (0)