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

Commit 9cbab46

Browse files
authored
Bump the version, update the changelog (#478)
1 parent 02ec9db commit 9cbab46

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@woocommerce/block-library",
33
"title": "WooCommerce Blocks",
44
"author": "Automattic",
5-
"version": "2.0.0-alpha",
5+
"version": "2.0.0-beta",
66
"description": "WooCommerce blocks for the Gutenberg editor.",
77
"homepage": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/",
88
"keywords": [

readme.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,26 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
8383

8484
== Changelog ==
8585

86+
= 2.0.0 - TBD =
87+
88+
- **BREAKING:** Requires WordPress 5.0+, WooCommerce 3.5+
89+
- **BREAKING:** Remove the legacy block entirely
90+
- **BREAKING:** Remove the `wc-pb/v3/*` endpoints in favor of new core `wc-blocks/v1/*` endpoints
91+
- Feature: Add content visibility settings to show/hide title, price, rating, button
92+
- Feature: Add transforms between basic product grid blocks
93+
- Fix: Add product rating display to preview, to better match front end
94+
- Fix: Product titles render HTML correctly in preview
95+
- Fix: Icons are now aligned correctly in placeholders
96+
- API: Change namespace, endpoints now accessed at `/wc-blocks/v1/*`
97+
- API: Add `catalog_visibility` parameter for fetching products
98+
- API: Update structure of attribute term endpoint to return `attribute.slug`, `attribute.name` etc
99+
- API: Update parameters to use full names, `category_operator`, `attribute_operator`
100+
- Components: Move SearchListControl to `@woocommerce/components` library
101+
- Components: Added new control component GridContentControl to manage content visibility
102+
- Build: Reorganize CSS into one file for editor preview, and one file for front-end styles
103+
- Build: Move registration code to a new class
104+
- Build: Update packages
105+
86106
= 1.4.0 - 2019-02-12 =
87107

88108
- Feature: Added new block: "Products by Attribute"

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: 2.0.0-alpha
6+
* Version: 2.0.0-beta
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', '2.0.0-alpha' );
18+
define( 'WGPB_VERSION', '2.0.0-beta' );
1919
define( 'WGPB_PLUGIN_FILE', __FILE__ );
2020
define( 'WGPB_ABSPATH', dirname( WGPB_PLUGIN_FILE ) . '/' );
2121

0 commit comments

Comments
 (0)