Skip to content

Commit

Permalink
Merge pull request #139 from woocommerce/release-1.2.0
Browse files Browse the repository at this point in the history
Release 1.2.0
  • Loading branch information
coreymckrill authored Jul 13, 2024
2 parents 3251263 + d093a8e commit 8cd71be
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 deletions.
14 changes: 14 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
*** Changelog ***

= 1.2.0 - 2024-07-12 =
* Add - --country and --type arguments for the `generate customers` command.
* Add - customer generator attempts to localize data based on the specified country.
* Add - orders will now include order attribution meta data.
* Add - a progress bar in the Web UI.
* Add - all generators now use a `batch` function under the hood when generating multiple items.
* Change - customer generator defaults to only using countries that the store is configured to sell to.
* Change - customer generator attempts to keep data consistent between name, username, and email address.
* Change - coupon generator now generates more unique coupon codes.
* Change - background process for the Web UI now generates items in batches instead of one at a time.
* Change - menu item under WP Admin > Tools is now just "Smooth Generator" for better space efficiency.
* Dev - update build tools, remove Grunt.
* Fix - coupon generator will always generate the specified number of coupons.

= 1.1.0 - 2023-03-14 =
* Add - some generated orders will now include fees.
* Add - the possibility for billing, shipping, and location addresses to be different in orders.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
{
"name": "wc-smooth-generator",
"title": "WooCommerce Smooth Generator",
"version": "1.1.0",
"version": "1.2.0",
"homepage": "https://github.com/woocommerce/wc-smooth-generator",
"repository": {
"type": "git",
"url": "https://github.com/woocommerce/wc-smooth-generator.git"
},
"license": "GPL-3.0+",
"scripts": {
"setup": "npm install && composer install",
"build": "composer install --no-dev && npm install --only=prod && composer archive --file=$npm_package_name --format=zip && npm run postarchive",
"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",
"setup": "npm install && composer install && husky install",
"build": "composer install --no-dev && npm install --only=prod && composer archive --file=$npm_package_name --format=zip",
"phpcs": "composer run phpcs",
"lint": "composer run lint",
"lint:staged": "composer run lint-staged",
"lint:branch": "composer run lint-branch",
"prepare": "husky install"
"lint:branch": "composer run lint-branch"
},
"devDependencies": {
"husky": "^8.0.0"
Expand Down
6 changes: 3 additions & 3 deletions wc-smooth-generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Plugin Name: WooCommerce Smooth Generator
* Plugin URI: https://woocommerce.com
* Description: A smooth product, order, customer, and coupon generator for WooCommerce.
* Version: 1.1.0
* Version: 1.2.0
* Author: Automattic
* Author URI: https://woocommerce.com
*
* Tested up to: 6.2
* Tested up to: 6.5
* Requires PHP: 7.4
* WC requires at least: 5.0.0
* WC tested up to: 7.9.0
* WC tested up to: 9.1.0
* Woo: 000000:0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0
*
* @package WooCommerce
Expand Down

0 comments on commit 8cd71be

Please sign in to comment.