Skip to content

Commit 96b4aa6

Browse files
committed
Merge remote-tracking branch 'origin/release/6.6.0' into trunk
2 parents 4ec2956 + dc970b0 commit 96b4aa6

File tree

6 files changed

+10
-12
lines changed

6 files changed

+10
-12
lines changed

changelog.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
*** Changelog ***
22

3-
= 6.5.1 - 2022-08-01 =
3+
= 6.6.0 - 2022-08-17 =
4+
* Fix - Fix "Pending" text instead of numeric amount on Payment Request button on iOS.
45

5-
= 6.5.1 - 2022-xx-xx =
6+
= 6.5.1 - 2022-08-01 =
67
* Fix - Stripe Link missing styles and logo for email trigger button.
78
* Fix - Stripe Link fatal error on `get_upe_enabled_payment_method_ids` method.
89
* Fix - Remove Link beta headers on checkout.

includes/payment-methods/class-wc-stripe-payment-request.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,6 @@ public function get_product_data() {
441441
$data['total'] = [
442442
'label' => apply_filters( 'wc_stripe_payment_request_total_label', $this->total_label ),
443443
'amount' => WC_Stripe_Helper::get_stripe_amount( $this->get_product_price( $product ) ),
444-
'pending' => true,
445444
];
446445

447446
$data['requestShipping'] = ( wc_shipping_enabled() && $product->needs_shipping() && 0 !== wc_get_shipping_method_count( true ) );
@@ -1304,7 +1303,6 @@ public function ajax_get_selected_product_data() {
13041303
$data['total'] = [
13051304
'label' => $this->total_label,
13061305
'amount' => WC_Stripe_Helper::get_stripe_amount( $total ),
1307-
'pending' => true,
13081306
];
13091307

13101308
$data['requestShipping'] = ( wc_shipping_enabled() && $product->needs_shipping() );

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "woocommerce-gateway-stripe",
33
"title": "WooCommerce Gateway Stripe",
4-
"version": "6.5.1",
4+
"version": "6.6.0",
55
"license": "GPL-3.0",
66
"homepage": "http://wordpress.org/plugins/woocommerce-gateway-stripe/",
77
"repository": {

readme.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: credit card, stripe, apple pay, payment request, google pay, sepa, sofort,
44
Requires at least: 5.7
55
Tested up to: 6.0
66
Requires PHP: 7.0
7-
Stable tag: 6.5.1
7+
Stable tag: 6.6.0
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010
Attributions: thorsten-stripe
@@ -128,8 +128,7 @@ If you get stuck, you can ask for help in the Plugin Forum.
128128

129129
== Changelog ==
130130

131-
= 6.5.1 - 2022-08-01 =
132-
* Fix - Stripe Link fatal error on `get_upe_enabled_payment_method_ids` method.
133-
* Fix - Remove Link beta headers on checkout.
131+
= 6.6.0 - 2022-08-17 =
132+
* Fix - Fix "Pending" text instead of numeric amount on Payment Request button on iOS.
134133

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

woocommerce-gateway-stripe.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Take credit card payments on your store using Stripe.
66
* Author: WooCommerce
77
* Author URI: https://woocommerce.com/
8-
* Version: 6.5.1
8+
* Version: 6.6.0
99
* Requires at least: 5.7
1010
* Tested up to: 6.0
1111
* WC requires at least: 6.2
@@ -21,7 +21,7 @@
2121
/**
2222
* Required minimums and constants
2323
*/
24-
define( 'WC_STRIPE_VERSION', '6.5.1' ); // WRCS: DEFINED_VERSION.
24+
define( 'WC_STRIPE_VERSION', '6.6.0' ); // WRCS: DEFINED_VERSION.
2525
define( 'WC_STRIPE_MIN_PHP_VER', '7.0.0' );
2626
define( 'WC_STRIPE_MIN_WC_VER', '6.2' );
2727
define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '6.3' );

0 commit comments

Comments
 (0)