Skip to content

Commit

Permalink
2.4.12
Browse files Browse the repository at this point in the history
  • Loading branch information
anderly committed Aug 10, 2023
1 parent 3ae95a0 commit a3ff786
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
12 changes: 11 additions & 1 deletion includes/class-ss-wc-mailchimp-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final class SS_WC_MailChimp_Plugin {
*
* @var string
*/
private static $version = '2.4.11';
private static $version = '2.4.12';

/**
* Plugin singleton instance
Expand Down Expand Up @@ -474,6 +474,16 @@ private function add_hooks() {

}

// Declare compatibility with custom order tables for WooCommerce.
add_action(
'before_woocommerce_init',
function () {
if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', SS_WC_MAILCHIMP_FILE, true );
}
}
);

} //end function add_hooks

/**
Expand Down
13 changes: 9 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Contributors: saintsystems, anderly
Donate link: http://ssms.us/hVdk
Tags: woocommerce, mailchimp, ecommerce, email
Requires at least: 4.7.0
Tested up to: 6.2.2
WC tested up to: 7.9.0
Tested up to: 6.3
WC tested up to: 8.0.1
Requires PHP: 5.6
Stable tag: 2.4.11
Version: 2.4.11
Stable tag: 2.4.12
Version: 2.4.12
License: GPLv3

Simple and flexible Mailchimp integration for WooCommerce.
Expand Down Expand Up @@ -120,6 +120,11 @@ Also, if you enjoy using the software [we'd love it if you could give us a revie

== Changelog ==

#### 2.4.12 - Aug 10, 2023
- Support for WooCommerce HPOS (High Performance Order Storage).
- Bump WC tested version up to 8.0.1.
- Bump WP tested version up to 6.3.

#### 2.4.11 - Jul 20, 2023
- PHP 8+ exception bug fix - check if array key exists.

Expand Down
4 changes: 2 additions & 2 deletions woocommerce-mailchimp.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
* Description: WP WooCommerce Mailchimp provides simple and flexible Mailchimp integration for WooCommerce.
* Author: Saint Systems
* Author URI: https://www.saintsystems.com
* Version: 2.4.11
* WC tested up to: 7.9.0
* Version: 2.4.12
* WC tested up to: 8.0.1
* Text Domain: woocommerce-mailchimp
* Domain Path: languages
*
Expand Down

0 comments on commit a3ff786

Please sign in to comment.