tag version 2.0.2
This commit is contained in:
parent
687006f867
commit
9339497c3b
|
@ -7,7 +7,7 @@
|
|||
"url": "git://github.com/woocommerce/woocommerce-beta-tester.git"
|
||||
},
|
||||
"title": "WooCommerce Beta Tester",
|
||||
"version": "1.0.0",
|
||||
"version": "2.0.2",
|
||||
"homepage": "http://github.com/woocommerce/woocommerce-beta-tester",
|
||||
"devDependencies": {
|
||||
"clean-css-cli": "^4.2.1",
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
=== 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
|
||||
Requires at least: 4.7
|
||||
Tested up to: 5.2
|
||||
Tested up to: 5.6
|
||||
Stable tag: 2.0.1
|
||||
License: GPLv3
|
||||
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 ==
|
||||
|
||||
= 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 =
|
||||
* Changes to make this plugin compatible with the upcoming WooCommerce 3.6
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Plugin Name: 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.
|
||||
* Version: 2.0.1
|
||||
* Version: 2.0.2
|
||||
* Author: WooCommerce
|
||||
* Author URI: http://woocommerce.com/
|
||||
* Requires at least: 4.4
|
||||
|
@ -23,7 +23,7 @@ if ( ! defined( 'WC_BETA_TESTER_FILE' ) ) {
|
|||
}
|
||||
|
||||
if ( ! defined( 'WC_BETA_TESTER_VERSION' ) ) {
|
||||
define( 'WC_BETA_TESTER_VERSION', '2.0.1' );
|
||||
define( 'WC_BETA_TESTER_VERSION', '2.0.2' );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue