Merge pull request woocommerce/woocommerce-beta-tester#82 from woocommerce/tag/version-2.0.2

tag version 2.0.2
This commit is contained in:
Ron Rennick 2020-11-26 15:20:32 -04:00 committed by GitHub
commit 8410e7b417
3 changed files with 13 additions and 5 deletions

View File

@ -7,7 +7,7 @@
"url": "git://github.com/woocommerce/woocommerce-beta-tester.git" "url": "git://github.com/woocommerce/woocommerce-beta-tester.git"
}, },
"title": "WooCommerce Beta Tester", "title": "WooCommerce Beta Tester",
"version": "1.0.0", "version": "2.0.2",
"homepage": "http://github.com/woocommerce/woocommerce-beta-tester", "homepage": "http://github.com/woocommerce/woocommerce-beta-tester",
"devDependencies": { "devDependencies": {
"clean-css-cli": "^4.2.1", "clean-css-cli": "^4.2.1",

View File

@ -1,8 +1,8 @@
=== WooCommerce Beta Tester === === WooCommerce Beta Tester ===
Contributors: automattic, bor0, claudiosanches, claudiulodro, kloon, mikejolley, peterfabian1000, rodrigosprimo Contributors: automattic, bor0, claudiosanches, claudiulodro, kloon, mikejolley, peterfabian1000, rodrigosprimo, wpmuguru
Tags: woocommerce, woo commerce, beta, beta tester, bleeding edge, testing Tags: woocommerce, woo commerce, beta, beta tester, bleeding edge, testing
Requires at least: 4.7 Requires at least: 4.7
Tested up to: 5.2 Tested up to: 5.6
Stable tag: 2.0.1 Stable tag: 2.0.1
License: GPLv3 License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html License URI: https://www.gnu.org/licenses/gpl-3.0.html
@ -53,6 +53,14 @@ See our [contributing guidelines here](https://github.com/woocommerce/woocommerc
== Changelog == == Changelog ==
= 2.0.2 =
* Fix notice for undefined `item`
* Fix auto_update_plugin filter reference
* Fix including SSR in bug report
* Fix style in version modal header
* Add check for WooCommerce installed in default location
= 2.0.1 = = 2.0.1 =
* Changes to make this plugin compatible with the upcoming WooCommerce 3.6 * Changes to make this plugin compatible with the upcoming WooCommerce 3.6

View File

@ -3,7 +3,7 @@
* Plugin Name: WooCommerce Beta Tester * Plugin Name: WooCommerce Beta Tester
* Plugin URI: https://github.com/woocommerce/woocommerce-beta-tester * Plugin URI: https://github.com/woocommerce/woocommerce-beta-tester
* Description: Run bleeding edge versions of WooCommerce. This will replace your installed version of WooCommerce with the latest tagged release - use with caution, and not on production sites. * Description: Run bleeding edge versions of WooCommerce. This will replace your installed version of WooCommerce with the latest tagged release - use with caution, and not on production sites.
* Version: 2.0.1 * Version: 2.0.2
* Author: WooCommerce * Author: WooCommerce
* Author URI: http://woocommerce.com/ * Author URI: http://woocommerce.com/
* Requires at least: 4.4 * Requires at least: 4.4
@ -23,7 +23,7 @@ if ( ! defined( 'WC_BETA_TESTER_FILE' ) ) {
} }
if ( ! defined( 'WC_BETA_TESTER_VERSION' ) ) { if ( ! defined( 'WC_BETA_TESTER_VERSION' ) ) {
define( 'WC_BETA_TESTER_VERSION', '2.0.1' ); define( 'WC_BETA_TESTER_VERSION', '2.0.2' );
} }
/** /**