Skip to content

Commit

Permalink
Merge pull request #102 from WebDevStudios/chore/prep-release-1.3.1
Browse files Browse the repository at this point in the history
Chore/prep release 1.3.1
  • Loading branch information
richaber authored May 1, 2020
2 parents b9f1d60 + a7388c0 commit c84a948
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
Stable tag: 1.3.1
Requires PHP: 7.2
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Expand Down Expand Up @@ -43,6 +43,11 @@ With Constant Contact you can:

== Changelog ==

= 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.
* Tweak - Replace `add_post_meta` usage with `$order->update_meta_data` in `CampaignId::save_user_campaign_id_to_order` and `NewsletterPreferenceCheckbox::save_user_preference_to_order` methods.

= 1.3.0 =

* Updated - Revised abandoned cart functionality to instead be abandoned checkouts
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "constant-contact-woocommerce",
"version": "1.3.0",
"version": "1.3.1",
"description": "",
"main": "index.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
* Version: 1.3.1
* Author: Constant Contact
* Author URI: https://www.constantcontact.com/
* Text Domain: cc-woo
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ final class Plugin extends ServiceRegistrar {
* @since 1.0.0
* @var string
*/
const PLUGIN_VERSION = '1.3.0';
const PLUGIN_VERSION = '1.3.1';

/**
* Whether the plugin is currently active.
Expand Down
2 changes: 1 addition & 1 deletion src/View/Checkout/CampaignId.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function register_hooks() {
* @author Michael Beckwith <michael@webdevstudios.com>
* @since 2019-08-22
* @author Rebekah Van Epps <rebekah.vanepps@webdevstudios.com>
* @since NEXT Changed hook to `woocommerce_checkout_create_order` and changed "save order meta" function.
* @since 1.3.1 Changed hook to `woocommerce_checkout_create_order` and changed "save order meta" function.
*
* @param WC_Order $order WC Order instance.
* @return void
Expand Down
2 changes: 1 addition & 1 deletion src/View/Checkout/NewsletterPreferenceCheckbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public function save_user_preference( $user_id ) {
* @author Jeremy Ward <jeremy.ward@webdevstudios.com>
* @since 2019-03-18
* @author Rebekah Van Epps <rebekah.vanepps@webdevstudios.com>
* @since NEXT Changed hook to `woocommerce_checkout_create_order` and changed "save order meta" function.
* @since 1.3.1 Changed hook to `woocommerce_checkout_create_order` and changed "save order meta" function.
*
* @param WC_Order $order WC Order instance.
* @return void
Expand Down

0 comments on commit c84a948

Please sign in to comment.