Skip to content

Commit 8cd71be

Browse files
authored
Merge pull request #139 from woocommerce/release-1.2.0
Release 1.2.0
2 parents 3251263 + d093a8e commit 8cd71be

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-11
lines changed

changelog.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
*** Changelog ***
22

3+
= 1.2.0 - 2024-07-12 =
4+
* Add - --country and --type arguments for the `generate customers` command.
5+
* Add - customer generator attempts to localize data based on the specified country.
6+
* Add - orders will now include order attribution meta data.
7+
* Add - a progress bar in the Web UI.
8+
* Add - all generators now use a `batch` function under the hood when generating multiple items.
9+
* Change - customer generator defaults to only using countries that the store is configured to sell to.
10+
* Change - customer generator attempts to keep data consistent between name, username, and email address.
11+
* Change - coupon generator now generates more unique coupon codes.
12+
* Change - background process for the Web UI now generates items in batches instead of one at a time.
13+
* Change - menu item under WP Admin > Tools is now just "Smooth Generator" for better space efficiency.
14+
* Dev - update build tools, remove Grunt.
15+
* Fix - coupon generator will always generate the specified number of coupons.
16+
317
= 1.1.0 - 2023-03-14 =
418
* Add - some generated orders will now include fees.
519
* Add - the possibility for billing, shipping, and location addresses to be different in orders.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
{
22
"name": "wc-smooth-generator",
33
"title": "WooCommerce Smooth Generator",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"homepage": "https://github.com/woocommerce/wc-smooth-generator",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/woocommerce/wc-smooth-generator.git"
99
},
1010
"license": "GPL-3.0+",
1111
"scripts": {
12-
"setup": "npm install && composer install",
13-
"build": "composer install --no-dev && npm install --only=prod && composer archive --file=$npm_package_name --format=zip && npm run postarchive",
14-
"postarchive": "rm -rf $npm_package_name && unzip $npm_package_name.zip -d $npm_package_name && rm $npm_package_name.zip && zip -r $npm_package_name.zip $npm_package_name && rm -rf $npm_package_name",
12+
"setup": "npm install && composer install && husky install",
13+
"build": "composer install --no-dev && npm install --only=prod && composer archive --file=$npm_package_name --format=zip",
1514
"phpcs": "composer run phpcs",
1615
"lint": "composer run lint",
1716
"lint:staged": "composer run lint-staged",
18-
"lint:branch": "composer run lint-branch",
19-
"prepare": "husky install"
17+
"lint:branch": "composer run lint-branch"
2018
},
2119
"devDependencies": {
2220
"husky": "^8.0.0"

wc-smooth-generator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
* Plugin Name: WooCommerce Smooth Generator
44
* Plugin URI: https://woocommerce.com
55
* Description: A smooth product, order, customer, and coupon generator for WooCommerce.
6-
* Version: 1.1.0
6+
* Version: 1.2.0
77
* Author: Automattic
88
* Author URI: https://woocommerce.com
99
*
10-
* Tested up to: 6.2
10+
* Tested up to: 6.5
1111
* Requires PHP: 7.4
1212
* WC requires at least: 5.0.0
13-
* WC tested up to: 7.9.0
13+
* WC tested up to: 9.1.0
1414
* Woo: 000000:0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0
1515
*
1616
* @package WooCommerce

0 commit comments

Comments
 (0)