diff --git a/changelog.txt b/changelog.txt index 3c78886a4..097c02080 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,6 @@ *** Changelog *** -= 4.1.8 - 2018-xx-xx = += 4.1.8 - 2018-07-19 = * Fix - 3DS payment sometimes will create additional transaction in Stripe. * Fix - WC 2.6 with SEPA saved payment causing error on checkout. * Update - EPS logo. diff --git a/languages/woocommerce-gateway-stripe.pot b/languages/woocommerce-gateway-stripe.pot index c9f9f8241..751b1801e 100644 --- a/languages/woocommerce-gateway-stripe.pot +++ b/languages/woocommerce-gateway-stripe.pot @@ -2,10 +2,10 @@ # This file is distributed under the same license as the WooCommerce Stripe Gateway package. msgid "" msgstr "" -"Project-Id-Version: WooCommerce Stripe Gateway 4.1.7\n" +"Project-Id-Version: WooCommerce Stripe Gateway 4.1.8\n" "Report-Msgid-Bugs-To: " "https://github.com/woocommerce/woocommerce-gateway-stripe/issues\n" -"POT-Creation-Date: 2018-06-08 21:19:13+00:00\n" +"POT-Creation-Date: 2018-07-19 13:30:28+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -915,15 +915,15 @@ msgid "" "the issue. (Logging must be enabled to see recorded logs)" msgstr "" -#: includes/class-wc-stripe-customer.php:108 +#: includes/class-wc-stripe-customer.php:119 msgid "Name" msgstr "" -#: includes/class-wc-stripe-customer.php:108 +#: includes/class-wc-stripe-customer.php:119 msgid "Username" msgstr "" -#: includes/class-wc-stripe-customer.php:189 +#: includes/class-wc-stripe-customer.php:200 msgid "Unable to add payment source." msgstr "" diff --git a/readme.txt b/readme.txt index 55dc53350..d8813a6ef 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.7 +Stable tag: 4.1.8 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html Attributions: thorsten-stripe @@ -101,9 +101,10 @@ If you get stuck, you can ask for help in the Plugin Forum. == Changelog == -= 4.1.7 - 2018-06-06 = -* Fix - Asynchronous payment methods such as SEPA, did not show order Stripe fees/net after payment succeed. -* Fix - Missing semicolon on a CSS style value which causes display issues in some browsers. += 4.1.8 - 2018-07-19 = +* Fix - 3DS payment sometimes will create additional transaction in Stripe. +* Fix - WC 2.6 with SEPA saved payment causing error on checkout. +* Update - EPS logo. [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 442d86fb6..32e08101c 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.7 + * Version: 4.1.8 * 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.7' ); + define( 'WC_STRIPE_VERSION', '4.1.8' ); define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' ); define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' ); define( 'WC_STRIPE_MAIN_FILE', __FILE__ );