diff --git a/changelog.txt b/changelog.txt index 5cba458f1..262565cda 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,6 @@ *** Changelog *** -= 4.1.10 - 2018-xx-xx = += 4.1.10 - 2018-09-17 = * Fix - When 3DS card redirect status is "not_required", charge the 3DS source. * Fix - Payment Request not validating quantity before payment sheet shows. * Fix - Test mode info not showing when description field is left blank. diff --git a/package.json b/package.json index 84a51ab4f..73a7d1062 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "woocommerce-gateway-stripe", "title": "WooCommerce Gateway Stripe", - "version": "4.1.0", + "version": "4.1.10", "license": "GPL-3.0", "homepage": "http://wordpress.org/plugins/woocommerce-gateway-stripe/", "repository": { diff --git a/readme.txt b/readme.txt index 56d91a155..93a518db1 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.1.9 +Stable tag: 4.1.10 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html Attributions: thorsten-stripe @@ -101,13 +101,12 @@ If you get stuck, you can ask for help in the Plugin Forum. == Changelog == -= 4.1.9 - 2018-08-27 = -* Fix - Don't display admin notices to user that cannot manage woocommerce. -* Fix - Fatal error when clicking on order link that doesn't exist. -* Fix - When capturing a charge from authorize, Stripe fees not displaying. -* Fix - Undefined property error on card type in rare cases. -* Tweak - Update SEPA IBAN to use new elements implementation. -* Add - Filter for Payment Request Button locale `wc_stripe_payment_request_button_locale`. += 4.1.10 - 2018-09-17 = +* Fix - When 3DS card redirect status is "not_required", charge the 3DS source. +* Fix - Payment Request not validating quantity before payment sheet shows. +* Fix - Test mode info not showing when description field is left blank. +* Add - Filter for Payment Request localized parameters `wc_stripe_payment_request_params`. +* Update - Stripe API version to 2018-09-06. [See changelog for all versions](https://raw.githubusercontent.com/woothemes/woocommerce-gateway-stripe/master/changelog.txt). diff --git a/woocommerce-gateway-stripe.php b/woocommerce-gateway-stripe.php index c417b2ace..0ec3c9022 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.1.9 + * Version: 4.1.10 * Requires at least: 4.4 * Tested up to: 4.9 * WC requires at least: 2.6 @@ -44,7 +44,7 @@ function woocommerce_gateway_stripe_init() { /** * Required minimums and constants */ - define( 'WC_STRIPE_VERSION', '4.1.9' ); + define( 'WC_STRIPE_VERSION', '4.1.10' ); define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' ); define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' ); define( 'WC_STRIPE_MAIN_FILE', __FILE__ );