MailChimp for WooCommerce - Version 2.1.7

Version Description

  • fix Queue_Command filepath in autoloader
Download this release

Release Info

Developer ryanhungate
Plugin Icon wp plugin MailChimp for WooCommerce
Version 2.1.7
Comparing to
See all releases

Code changes from version 2.1.6 to 2.1.7

Files changed (3) hide show
  1. README.txt +4 -1
  2. bootstrap.php +2 -2
  3. mailchimp-woocommerce.php +1 -1
README.txt CHANGED
@@ -4,7 +4,7 @@ Tags: ecommerce,email,workflows,mailchimp
4
  Donate link: https://mailchimp.com
5
  Requires at least: 4.3
6
  Tested up to: 4.9.5
7
- Stable tag: 2.1.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -69,6 +69,9 @@ You have 2 options to run this process:
69
 
70
 
71
  == Changelog ==
 
 
 
72
  = 2.1.6 =
73
  * moved to an autoloader for performance enhancement
74
  * flush database tables on un-installation to assist with stale records in the queue
4
  Donate link: https://mailchimp.com
5
  Requires at least: 4.3
6
  Tested up to: 4.9.5
7
+ Stable tag: 2.1.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
69
 
70
 
71
  == Changelog ==
72
+ = 2.1.7 =
73
+ * fix Queue_Command filepath in autoloader
74
+
75
  = 2.1.6 =
76
  * moved to an autoloader for performance enhancement
77
  * flush database tables on un-installation to assist with stale records in the queue
bootstrap.php CHANGED
@@ -65,7 +65,7 @@ spl_autoload_register(function($class) {
65
  'WP_Queue' => 'includes/vendor/queue/classes/wp-queue.php',
66
  'WP_Http_Worker' => 'includes/vendor/queue/classes/worker/wp-http-worker.php',
67
  'WP_Worker' => 'includes/vendor/queue/classes/worker/wp-worker.php',
68
- 'Queue_Command' => 'includes/vendor/queue/classes/cli-queue-command.php',
69
  );
70
 
71
  // if the file exists, require it
@@ -86,7 +86,7 @@ function mailchimp_environment_variables() {
86
  return (object) array(
87
  'repo' => 'master',
88
  'environment' => 'production',
89
- 'version' => '2.1.6',
90
  'php_version' => phpversion(),
91
  'wp_version' => (empty($wp_version) ? 'Unknown' : $wp_version),
92
  'wc_version' => class_exists('WC') ? WC()->version : null,
65
  'WP_Queue' => 'includes/vendor/queue/classes/wp-queue.php',
66
  'WP_Http_Worker' => 'includes/vendor/queue/classes/worker/wp-http-worker.php',
67
  'WP_Worker' => 'includes/vendor/queue/classes/worker/wp-worker.php',
68
+ 'Queue_Command' => 'includes/vendor/queue/classes/cli/queue-command.php',
69
  );
70
 
71
  // if the file exists, require it
86
  return (object) array(
87
  'repo' => 'master',
88
  'environment' => 'production',
89
+ 'version' => '2.1.7',
90
  'php_version' => phpversion(),
91
  'wp_version' => (empty($wp_version) ? 'Unknown' : $wp_version),
92
  'wc_version' => class_exists('WC') ? WC()->version : null,
mailchimp-woocommerce.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: MailChimp for WooCommerce
17
  * Plugin URI: https://mailchimp.com/connect-your-store/
18
  * Description: MailChimp - WooCommerce plugin
19
- * Version: 2.1.6
20
  * Author: MailChimp
21
  * Author URI: https://mailchimp.com
22
  * License: GPL-2.0+
16
  * Plugin Name: MailChimp for WooCommerce
17
  * Plugin URI: https://mailchimp.com/connect-your-store/
18
  * Description: MailChimp - WooCommerce plugin
19
+ * Version: 2.1.7
20
  * Author: MailChimp
21
  * Author URI: https://mailchimp.com
22
  * License: GPL-2.0+