Skip to content

Commit e89ab57

Browse files
committed
🚀 RELEASE: v2.0.2
1 parent 44966ec commit e89ab57

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.txt

+4
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ Using a plugin like Customer Loyalty for WooCommerce increases the likelihood of
5757

5858
== Changelog ==
5959

60+
= 2.0.2 =
61+
62+
* [🐛 BUG: Fixed is_wc_endpoint_url causing a fatal error when not within a WooCommerce context](https://github.com/deviodigital/customer-loyalty-for-woocommerce/commit/44966ec6ceff814929a0d72b324a0450911b59ae)
63+
6064
= 2.0.1 =
6165

6266
* [📦 NEW: Added plugin usage restrictions for websites hosted on wordpress.com](https://github.com/deviodigital/customer-loyalty-for-woocommerce/commit/3bbb277ce7d1eed782f50f7cfefefe193092ada8)

customer-loyalty-for-woocommerce.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Plugin Name: Loyalty & Rewards for WooCommerce®
1414
* Plugin URI: https://www.deviodigital.com/customer-loyalty-for-woocommerce
1515
* Description: Increase customer loyalty by rewarding your customers for their repeat purchase behavior.
16-
* Version: 2.0.1
16+
* Version: 2.0.2
1717
* Author: Devio Digital
1818
* Author URI: https://www.deviodigital.com
1919
* License: GPL-2.0+
@@ -29,7 +29,7 @@
2929
}
3030

3131
// Current plugin version.
32-
define( 'CUSTOMER_LOYALTY_VERSION', '2.0.1' );
32+
define( 'CUSTOMER_LOYALTY_VERSION', '2.0.2' );
3333

3434
require 'vendor/plugin-update-checker/plugin-update-checker.php';
3535
use YahnisElsts\PluginUpdateChecker\v5\PucFactory;

includes/class-clwc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class CLWC {
7171
*/
7272
public function __construct() {
7373
$this->plugin_name = 'customer-loyalty-for-woocommerce';
74-
$this->version = '2.0.1';
74+
$this->version = '2.0.2';
7575

7676
if ( defined( 'CUSTOMER_LOYALTY_VERSION' ) ) {
7777
$this->version = CUSTOMER_LOYALTY_VERSION;

0 commit comments

Comments
 (0)