Version Description
Download this release
Release Info
Developer | anderly |
Plugin | WooCommerce MailChimp |
Version | 2.3.11 |
Comparing to | |
See all releases |
Code changes from version 2.3.10 to 2.3.11
includes/class-ss-wc-mailchimp-handler.php
CHANGED
@@ -19,12 +19,21 @@ if ( ! class_exists( 'SS_WC_MailChimp_Handler' ) ) {
|
|
19 |
final class SS_WC_MailChimp_Handler {
|
20 |
|
21 |
/**
|
|
|
|
|
22 |
* Plugin singleton instance
|
23 |
*
|
24 |
* @var SS_WC_MailChimp_Handler
|
25 |
*/
|
26 |
private static $instance = null;
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
/**
|
29 |
* Constructor
|
30 |
*
|
19 |
final class SS_WC_MailChimp_Handler {
|
20 |
|
21 |
/**
|
22 |
+
*
|
23 |
+
*
|
24 |
* Plugin singleton instance
|
25 |
*
|
26 |
* @var SS_WC_MailChimp_Handler
|
27 |
*/
|
28 |
private static $instance = null;
|
29 |
|
30 |
+
/**
|
31 |
+
* SS_WC_MailChimp_Plugin instance
|
32 |
+
*
|
33 |
+
* @var SS_WC_MailChimp_Plugin
|
34 |
+
*/
|
35 |
+
private $sswcmc = null;
|
36 |
+
|
37 |
/**
|
38 |
* Constructor
|
39 |
*
|
includes/class-ss-wc-mailchimp-plugin.php
CHANGED
@@ -15,7 +15,7 @@ final class SS_WC_MailChimp_Plugin {
|
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
-
private static $version = '2.3.
|
19 |
|
20 |
/**
|
21 |
* Plugin singleton instance
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
+
private static $version = '2.3.11';
|
19 |
|
20 |
/**
|
21 |
* Plugin singleton instance
|
readme.txt
CHANGED
@@ -3,10 +3,10 @@ Contributors: saintsystems, anderly
|
|
3 |
Donate link: http://ssms.us/hVdk
|
4 |
Tags: woocommerce, mailchimp, ecommerce, email
|
5 |
Requires at least: 4.7.0
|
6 |
-
Tested up to: 5.
|
7 |
-
WC tested up to:
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.3.
|
10 |
License: GPLv3
|
11 |
|
12 |
Simple and flexible Mailchimp integration for WooCommerce.
|
@@ -119,6 +119,10 @@ Also, if you enjoy using the software [we'd love it if you could give us a revie
|
|
119 |
|
120 |
== Changelog ==
|
121 |
|
|
|
|
|
|
|
|
|
122 |
#### 2.3.10 - March 3, 2020
|
123 |
- Increase API return limit count to 500.
|
124 |
- Tested up to WooCommerce 3.9.2
|
3 |
Donate link: http://ssms.us/hVdk
|
4 |
Tags: woocommerce, mailchimp, ecommerce, email
|
5 |
Requires at least: 4.7.0
|
6 |
+
Tested up to: 5.4.0
|
7 |
+
WC tested up to: 4.0.1
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.3.11
|
10 |
License: GPLv3
|
11 |
|
12 |
Simple and flexible Mailchimp integration for WooCommerce.
|
119 |
|
120 |
== Changelog ==
|
121 |
|
122 |
+
#### 2.3.10 - March 3, 2020
|
123 |
+
- Tested up to WordPress 5.4
|
124 |
+
- Tested up to WooCommerce 4.0.1
|
125 |
+
|
126 |
#### 2.3.10 - March 3, 2020
|
127 |
- Increase API return limit count to 500.
|
128 |
- Tested up to WooCommerce 3.9.2
|
woocommerce-mailchimp.php
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
* Description: WP WooCommerce Mailchimp provides simple and flexible Mailchimp integration for WooCommerce.
|
6 |
* Author: Saint Systems
|
7 |
* Author URI: https://www.saintsystems.com
|
8 |
-
* Version: 2.3.
|
9 |
-
* WC tested up to:
|
10 |
* Text Domain: woocommerce-mailchimp
|
11 |
* Domain Path: languages
|
12 |
*
|
5 |
* Description: WP WooCommerce Mailchimp provides simple and flexible Mailchimp integration for WooCommerce.
|
6 |
* Author: Saint Systems
|
7 |
* Author URI: https://www.saintsystems.com
|
8 |
+
* Version: 2.3.11
|
9 |
+
* WC tested up to: 4.0.1
|
10 |
* Text Domain: woocommerce-mailchimp
|
11 |
* Domain Path: languages
|
12 |
*
|