diff --git a/README.txt b/README.txt index 1b5d409..96f24d0 100644 --- a/README.txt +++ b/README.txt @@ -3,7 +3,7 @@ Contributors: deviodigital Tags: loyalty, rewards, customer, woocommerce, gift Requires at least: 3.0.1 Tested up to: 5.9.2 -Stable tag: 1.2.2 +Stable tag: 1.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -57,6 +57,12 @@ Using a plugin like Customer Loyalty for WooCommerce increases the likelihood of == Changelog == += 1.3 = +* Added new French translation in `languages/customer-loyalty-for-woocommerce-fr_FR.po` +* Updated Italian translation in `languages/customer-loyalty-for-woocommerce-it_IT.po` +* WordPress Coding Standards code updates based on Codacy report throughout multiple files in the plugin +* General code cleanup throughout multiple files in the plugin + = 1.2.2 = * Added new Italian translation in `languages/customer-loyalty-for-woocommerce-it_IT.po` diff --git a/customer-loyalty-for-woocommerce.php b/customer-loyalty-for-woocommerce.php index 8766e80..afd61eb 100644 --- a/customer-loyalty-for-woocommerce.php +++ b/customer-loyalty-for-woocommerce.php @@ -11,7 +11,7 @@ * Plugin Name: Customer Loyalty for WooCommerce * Plugin URI: https://www.deviodigital.com/customer-loyalty-for-woocommerce * Description: Increase customer loyalty by rewarding your customers for their repeat purchase behavior. - * Version: 1.2.2 + * Version: 1.3.0 * Author: Devio Digital * Author URI: https://www.deviodigital.com * License: GPL-2.0+ @@ -28,7 +28,7 @@ /** * Current plugin version. */ -define( 'CUSTOMER_LOYALTY_VERSION', '1.2.2' ); +define( 'CUSTOMER_LOYALTY_VERSION', '1.3.0' ); /** * The code that runs during plugin activation. diff --git a/includes/class-clwc.php b/includes/class-clwc.php index 3cac9cf..d4dd386 100644 --- a/includes/class-clwc.php +++ b/includes/class-clwc.php @@ -68,7 +68,7 @@ class CLWC { */ public function __construct() { $this->plugin_name = 'customer-loyalty-for-woocommerce'; - $this->version = '1.2.2'; + $this->version = '1.3.0'; if ( defined( 'CUSTOMER_LOYALTY_VERSION' ) ) { $this->version = CUSTOMER_LOYALTY_VERSION;