Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
roykho committed Feb 23, 2018
1 parent 93e6ca6 commit c1ff6b0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 26 deletions.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
*** Changelog ***

= 4.0.7 - 2018-02-23 =
* Fix - Potential conflict issue when adding payment method from another payment gateway.
* Fix - Issue when using saved card before sources were introduced.
* Add - Description field/setting for Stripe Checkout Modal/popup.

= 4.0.6 - 2018-02-20 =
* Fix - A WC 2.6 backwards compat issue with function from WC 3.0.
* Fix - Subs renewal sometimes failed due to parameters being different.
Expand Down
12 changes: 6 additions & 6 deletions languages/woocommerce-gateway-stripe.pot
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.6\n"
"Project-Id-Version: WooCommerce Stripe Gateway 4.0.7\n"
"Report-Msgid-Bugs-To: "
"https://github.com/woocommerce/woocommerce-gateway-stripe/issues\n"
"POT-Creation-Date: 2018-02-23 01:12:45+00:00\n"
"POT-Creation-Date: 2018-02-23 14:39:05+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down Expand Up @@ -64,20 +64,20 @@ msgid ""
"cancel to remove the pre-authorization."
msgstr ""

#: includes/abstracts/abstract-wc-stripe-payment-gateway.php:527
#: includes/abstracts/abstract-wc-stripe-payment-gateway.php:528
msgid "Invalid payment method. Please input a new card number."
msgstr ""

#: includes/abstracts/abstract-wc-stripe-payment-gateway.php:767
#: includes/abstracts/abstract-wc-stripe-payment-gateway.php:770
#. translators: 1) dollar amount 2) transaction id 3) refund message
msgid "Refunded %1$s - Refund ID: %2$s - Reason: %3$s"
msgstr ""

#: includes/abstracts/abstract-wc-stripe-payment-gateway.php:767
#: includes/abstracts/abstract-wc-stripe-payment-gateway.php:770
msgid "Pre-Authorization Released"
msgstr ""

#: includes/abstracts/abstract-wc-stripe-payment-gateway.php:785
#: includes/abstracts/abstract-wc-stripe-payment-gateway.php:788
msgid "There was a problem adding the card."
msgstr ""

Expand Down
20 changes: 2 additions & 18 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
Stable tag: 4.0.7
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Attributions: thorsten-stripe
Expand Down Expand Up @@ -105,27 +105,11 @@ We will completely remove the older form by version 4.1.0.

== Changelog ==

= 4.0.7 - 2018-xx-xx =
= 4.0.7 - 2018-02-23 =
* Fix - Potential conflict issue when adding payment method from another payment gateway.
* Fix - Issue when using saved card before sources were introduced.
* Add - Description field/setting for Stripe Checkout Modal/popup.

= 4.0.6 - 2018-02-20 =
* Fix - A WC 2.6 backwards compat issue with function from WC 3.0.
* Fix - Subs renewal sometimes failed due to parameters being different.
* Fix - Stripe accepts only NO for Norwegian language on Stripe Checkout.
* Fix - Refund fees may not accurately reflect net fees. Props @rvola.
* Fix - Undefined SERVERNAME property in some cases.
* Fix - Potential issue when a charge parameter changes due to initial failed request causing retries to fail.
* Fix - When 3DS is not required, failed payments was not change order status to failed.
* Fix - Potential duplicate order processes on WC side when webhook and redirect has a race condition.
* Remove - Checkout validation and let WC handle it.
* Update - Stripe API version to 2018-02-06.
* Add - Webhooks for review open/closed for Radar.
* Add - Hook `wc_stripe_refund_request` for refund request arguments.
* Add - Hook `wc_stripe_validate_modal_checkout` to enable 3rd party checkout validation.
* Add - Hook `wc_stripe_validate_modal_checkout_action` to enable 3rd party checkout validation.

[See changelog for all versions](https://raw.githubusercontent.com/woothemes/woocommerce-gateway-stripe/master/changelog.txt).

== Upgrade Notice ==
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-gateway-stripe.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Take credit card payments on your store using Stripe.
* Author: WooCommerce
* Author URI: https://woocommerce.com/
* Version: 4.0.6
* Version: 4.0.7
* Requires at least: 4.4
* Tested up to: 4.9
* WC requires at least: 2.6
Expand All @@ -23,7 +23,7 @@
/**
* Required minimums and constants
*/
define( 'WC_STRIPE_VERSION', '4.0.6' );
define( 'WC_STRIPE_VERSION', '4.0.7' );
define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' );
define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' );
define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
Expand Down

0 comments on commit c1ff6b0

Please sign in to comment.