diff --git a/plugins/woocommerce-admin/composer.json b/plugins/woocommerce-admin/composer.json index 819621e7446..a627fc96f38 100644 --- a/plugins/woocommerce-admin/composer.json +++ b/plugins/woocommerce-admin/composer.json @@ -1,6 +1,6 @@ { "name": "woocommerce/woocommerce-admin", - "version": "2.1.0-dev", + "version": "2.2.0-dev", "description": "A modern, javascript-driven WooCommerce Admin experience.", "homepage": "https://github.com/woocommerce/woocommerce-admin", "type": "wordpress-plugin", diff --git a/plugins/woocommerce-admin/package.json b/plugins/woocommerce-admin/package.json index ee62c0c493c..8a36e29d109 100644 --- a/plugins/woocommerce-admin/package.json +++ b/plugins/woocommerce-admin/package.json @@ -1,6 +1,6 @@ { "name": "@woocommerce/admin-library", - "version": "2.1.0-dev", + "version": "2.2.0-dev", "homepage": "https://woocommerce.github.io/woocommerce-admin/", "repository": { "type": "git", diff --git a/plugins/woocommerce-admin/readme.txt b/plugins/woocommerce-admin/readme.txt index 0d376bea62c..af1b7708a2b 100644 --- a/plugins/woocommerce-admin/readme.txt +++ b/plugins/woocommerce-admin/readme.txt @@ -4,7 +4,7 @@ Tags: ecommerce, e-commerce, store, sales, reports, analytics, dashboard, activi Requires at least: 5.4.0 Tested up to: 5.6.0 Requires PHP: 7.0 -Stable tag: 2.1.0-dev +Stable tag: 2.2.0-dev License: GPLv3 License URI: https://github.com/woocommerce/woocommerce-admin/blob/main/license.txt @@ -75,6 +75,14 @@ Release and roadmap notes are available on the [WooCommerce Developers Blog](htt == Unreleased == +- Dev: Add a changelog lint check to PRs. #6414 +- Fix: Move the shipping input and text 1px lower. #6408 +- Dev: support use of Array.flat in client and packages. #6411 +- Fix: Correct the Klarna slug #6440 +- Tweak: Refactor autoloader to remove global variable. #6412 + +== 2.1.0 == + - Dev: Allow highlight tooltip to use body tag as parent. #6309 - Dev: Remove Google fonts and material icons. #6343 - Add: Remove CES actions for adding and editing a product and editing an order #6355 @@ -84,7 +92,6 @@ Release and roadmap notes are available on the [WooCommerce Developers Blog](htt - Fix: Removed @woocommerce/components/card from OBW #6374 - Fix: Email notes now are turned off by default #6324 - Add: CES track settings tab on updating settings #6368 -- Dev: support use of Array.flat in client and packages. #6411 - Fix: Top bar slightly overlaps wp-admin navigation on mobile #6292 - Fix: Hide tooltip in welcome modal #6142 - Fix: update single column home screen width to 680px #6297 @@ -118,11 +125,7 @@ Release and roadmap notes are available on the [WooCommerce Developers Blog](htt - Dev: Change `siteUrl` to `homeUrl` on navigation site title #6240 - Dev: Add navigation favorites data store #6275 - Add: Add navigation intro modal. #6367 -- Tweak: Refactor autoloader to remove global variable. #6412 - Fix: Reset Navigation submenu before making Flyout #6396 -- Dev: Add a changelog lint check to PRs. #6414 -- Fix: Move the shipping input and text 1px lower. #6408 -- Fix: Correct the Klarna slug #6440 == 2.0.0 02/05/2021 == diff --git a/plugins/woocommerce-admin/src/Composer/Package.php b/plugins/woocommerce-admin/src/Composer/Package.php index c6b7b699dbd..51c1d02709b 100644 --- a/plugins/woocommerce-admin/src/Composer/Package.php +++ b/plugins/woocommerce-admin/src/Composer/Package.php @@ -24,7 +24,7 @@ class Package { * * @var string */ - const VERSION = '2.1.0-dev'; + const VERSION = '2.2.0-dev'; /** * Package active. diff --git a/plugins/woocommerce-admin/src/FeaturePlugin.php b/plugins/woocommerce-admin/src/FeaturePlugin.php index d5e77ccf418..f8b238977ad 100644 --- a/plugins/woocommerce-admin/src/FeaturePlugin.php +++ b/plugins/woocommerce-admin/src/FeaturePlugin.php @@ -154,7 +154,7 @@ class FeaturePlugin { $this->define( 'WC_ADMIN_PLUGIN_FILE', WC_ADMIN_ABSPATH . 'woocommerce-admin.php' ); // WARNING: Do not directly edit this version number constant. // It is updated as part of the prebuild process from the package.json value. - $this->define( 'WC_ADMIN_VERSION_NUMBER', '2.1.0-dev' ); + $this->define( 'WC_ADMIN_VERSION_NUMBER', '2.2.0-dev' ); } /** diff --git a/plugins/woocommerce-admin/woocommerce-admin.php b/plugins/woocommerce-admin/woocommerce-admin.php index 5f07273c5bd..36c8d91d67b 100755 --- a/plugins/woocommerce-admin/woocommerce-admin.php +++ b/plugins/woocommerce-admin/woocommerce-admin.php @@ -7,7 +7,7 @@ * Author URI: https://woocommerce.com/ * Text Domain: woocommerce-admin * Domain Path: /languages - * Version: 2.1.0-dev + * Version: 2.2.0-dev * Requires at least: 5.4 * Requires PHP: 7.0 *