diff --git a/README.txt b/README.txt index 3c3a232d..9d386b0f 100644 --- a/README.txt +++ b/README.txt @@ -3,7 +3,7 @@ Contributors: constantcontact, webdevstudios, znowebdev, jmichaelward, ggwicz, r Tags: capture, contacts, constant contact, constant contact form, constant contact newsletter, constant contact official, contact forms, email, form, forms, marketing, mobile, newsletter, opt-in, plugin, signup, subscribe, subscription, widget Requires at least: 5.2.2 Tested up to: 5.4.0 -Stable tag: 1.3.1 +Stable tag: 1.3.2 Requires PHP: 7.2 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -64,6 +64,12 @@ Customers == Changelog == += 1.3.2 = + +* Updated - Add links to documentation in README Frequently Asked Questions. +* Updated - Use WooCommerce's WC_Validation::is_phone() for Phone Number setting validation. +* Updated - Use WooCommerce's wc_sanitize_phone_number() for Phone Number setting sanitization. + = 1.3.1 = * Tweak - Change `CampaignId::save_user_campaign_id_to_order` and `NewsletterPreferenceCheckbox::save_user_preference_to_order` methods to fire on `woocommerce_checkout_create_order` hook. diff --git a/package.json b/package.json index 01c3e4ae..4ff064e6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "constant-contact-woocommerce", - "version": "1.3.1", + "version": "1.3.2", "description": "", "main": "index.js", "dependencies": { diff --git a/plugin.php b/plugin.php index 2eff21d6..4221a043 100644 --- a/plugin.php +++ b/plugin.php @@ -10,7 +10,7 @@ * Plugin Name: Constant Contact + WooCommerce * Description: Add products to your emails and sync your contacts. * Plugin URI: https://github.com/WebDevStudios/constant-contact-woocommerce - * Version: 1.3.1 + * Version: 1.3.2 * Author: Constant Contact * Author URI: https://www.constantcontact.com/ * Text Domain: cc-woo diff --git a/src/Plugin.php b/src/Plugin.php index e8663bff..b0614e8d 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -46,7 +46,7 @@ final class Plugin extends ServiceRegistrar { * @since 1.0.0 * @var string */ - const PLUGIN_VERSION = '1.3.1'; + const PLUGIN_VERSION = '1.3.2'; /** * Whether the plugin is currently active.