From 674f7429350b9d50356e991688e3ed68758d835b Mon Sep 17 00:00:00 2001 From: roykho Date: Tue, 30 Jan 2018 08:32:31 -0800 Subject: [PATCH] Bumping version --- changelog.txt | 22 ++++++++++++++++++++++ readme.txt | 8 ++------ woocommerce-gateway-stripe.php | 4 ++-- 3 files changed, 26 insertions(+), 8 deletions(-) diff --git a/changelog.txt b/changelog.txt index 4a960fc78..79c229dae 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,27 @@ *** Changelog *** += 4.0.4 - 2018-01-30 = +* Add - SEPA mandate notification email. +* Add - Preferred language to SOFORT and Bancontact so it can be localized. +* Add - Hook to change SEPA mandate notification to none "wc_stripe_sepa_mandate_notification". +* Add - Hook to change data for product when using Payment Request Button "wc_stripe_payment_request_product_data". +* Add - Hook to change the behavior of allowing subscriptions to charge a customer's default source "'wc_stripe_use_default_customer_source'". +* Add - Hook to source object "wc_stripe_sofort_source", "wc_stripe_p24_source", "wc_stripe_ideal_source", "wc_stripe_giropay_source", "wc_stripe_bancontact_source", "wc_stripe_alipay_source", "wc_stripe_3ds_source". +* Add - Hook to change payment request button total label "wc_stripe_payment_request_total_label". +* Add - Hook to change locale of Stripe Checkout "wc_stripe_checkout_locale". +* Add - Hook to change elements options "wc_stripe_elements_options". +* Fix - When checkout form produces an error on mobile, sometimes the blocking mask is not release blocking new input. +* Fix - On older subscription payments, the ending card number is not shown on the subscriptions table in my account. +* Fix - Filter to show payment request button on checkout page not working. +* Fix - WC session handling compatibility with WC 3.3. +* Fix - BW compatibility with WC 2.6.x on add_order_meta to prevent errors. +* Fix - Possible fix for duplicate charges due to webhook and redirect handler firing at the same time by adding delay to the webhook process. +* Tweak - In a subscription billing, Stripe source ID is no longer a required field. +* Tweak - On a subscription order renewal-- if source is empty, will now try to charge the default source. +* Notice - Bitcoin has been soft deprecated and Stripe will no longer support it on April 23, 2018. Please plan accordingly. +* Remove - Stripe Checkout Locale setting in favor of using store set locale. +* Update - Stripe API version to 2018-01-23. + = 4.0.3 - 2018-01-18 = * Fix - Pass Stripe source as id instead of object as some sites may conflict with objects being passed. * Fix - For Payment Request Button, if test keys are not filled, it can cause live mode not to function. diff --git a/readme.txt b/readme.txt index 16e0b6bc2..58003dcc1 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: credit card, stripe, apple pay, payment request, google pay, sepa, sofort, Requires at least: 4.4 Tested up to: 4.9 Requires PHP: 5.6 -Stable tag: 4.0.3 +Stable tag: 4.0.4 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html Attributions: thorsten-stripe @@ -101,7 +101,7 @@ If you get stuck, you can ask for help in the Plugin Forum. == Changelog == -= 4.0.4 - 2018-xx-xx = += 4.0.4 - 2018-01-30 = * Add - SEPA mandate notification email. * Add - Preferred language to SOFORT and Bancontact so it can be localized. * Add - Hook to change SEPA mandate notification to none "wc_stripe_sepa_mandate_notification". @@ -123,10 +123,6 @@ If you get stuck, you can ask for help in the Plugin Forum. * Remove - Stripe Checkout Locale setting in favor of using store set locale. * Update - Stripe API version to 2018-01-23. -= 4.0.3 - 2018-01-18 = -* Fix - Pass Stripe source as id instead of object as some sites may conflict with objects being passed. -* Fix - For Payment Request Button, if test keys are not filled, it can cause live mode not to function. - [See changelog for all versions](https://raw.githubusercontent.com/woothemes/woocommerce-gateway-stripe/master/changelog.txt). == Upgrade Notice == diff --git a/woocommerce-gateway-stripe.php b/woocommerce-gateway-stripe.php index 9e89defaa..ef9145bff 100644 --- a/woocommerce-gateway-stripe.php +++ b/woocommerce-gateway-stripe.php @@ -5,7 +5,7 @@ * Description: Take credit card payments on your store using Stripe. * Author: WooCommerce * Author URI: https://woocommerce.com/ - * Version: 4.0.3 + * Version: 4.0.4 * Requires at least: 4.4 * Tested up to: 4.9 * WC requires at least: 2.6 @@ -22,7 +22,7 @@ /** * Required minimums and constants */ - define( 'WC_STRIPE_VERSION', '4.0.3' ); + define( 'WC_STRIPE_VERSION', '4.0.4' ); define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' ); define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' ); define( 'WC_STRIPE_MAIN_FILE', __FILE__ );