Skip to content

Commit bf229bf

Browse files
committed
Merge branch 'trunk' into develop
2 parents b4e214c + c99eb51 commit bf229bf

File tree

7 files changed

+11
-28
lines changed

7 files changed

+11
-28
lines changed

.vscode/tasks.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*** Changelog ***
22

3-
= 6.1.0 - 2022-xx-xx =
3+
= 6.1.0 - 2022-01-26 =
44
* Tweak - Use the newly exposed LoadableMask component provided by WooCommerce Blocks to trigger the loading state for Payment Request Buttons.
55
* Fix - Response type for account summary API.
66
* Fix - Invalid response in account summary API when missing account data.

includes/abstracts/abstract-wc-stripe-payment-gateway.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@ public function update_existing_intent( $intent, $order, $prepared_source ) {
13821382
/**
13831383
* Filter the value of the request.
13841384
*
1385-
* @since x.x.x
1385+
* @since 6.1.0
13861386
* @param array $request Request to send to Stripe API.
13871387
* @param WC_Order $order Order that the intent is associated with.
13881388
* @param object $source Currently selected source.

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.0.0",
4+
"version": "6.1.0",
55
"license": "GPL-3.0",
66
"homepage": "http://wordpress.org/plugins/woocommerce-gateway-stripe/",
77
"repository": {

readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
Contributors: woocommerce, automattic, royho, akeda, mattyza, bor0, woothemes
33
Tags: credit card, stripe, apple pay, payment request, google pay, sepa, sofort, bancontact, alipay, giropay, ideal, p24, woocommerce, automattic
44
Requires at least: 5.6
5-
Tested up to: 5.8
5+
Tested up to: 5.9
66
Requires PHP: 7.0
7-
Stable tag: 6.0.0
7+
Stable tag: 6.1.0
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010
Attributions: thorsten-stripe
@@ -128,7 +128,7 @@ If you get stuck, you can ask for help in the Plugin Forum.
128128

129129
== Changelog ==
130130

131-
= 6.x.x - 2022-xx-xx =
131+
= 6.1.0 - 2022-01-26 =
132132
* Tweak - Use the newly exposed LoadableMask component provided by WooCommerce Blocks to trigger the loading state for Payment Request Buttons.
133133
* Fix - Response type for account summary API.
134134
* Fix - Invalid response in account summary API when missing account data.

woocommerce-gateway-stripe.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
* Description: Take credit card payments on your store using Stripe.
66
* Author: WooCommerce
77
* Author URI: https://woocommerce.com/
8-
* Version: 6.0.0
8+
* Version: 6.1.0
99
* Requires at least: 5.6
10-
* Tested up to: 5.8
10+
* Tested up to: 5.9
1111
* WC requires at least: 5.7
12-
* WC tested up to: 5.9
12+
* WC tested up to: 6.1.1
1313
* Text Domain: woocommerce-gateway-stripe
1414
* Domain Path: /languages
1515
*/
@@ -21,7 +21,7 @@
2121
/**
2222
* Required minimums and constants
2323
*/
24-
define( 'WC_STRIPE_VERSION', '6.0.0' ); // WRCS: DEFINED_VERSION.
24+
define( 'WC_STRIPE_VERSION', '6.1.0' ); // WRCS: DEFINED_VERSION.
2525
define( 'WC_STRIPE_MIN_PHP_VER', '7.0.0' );
2626
define( 'WC_STRIPE_MIN_WC_VER', '5.7' );
2727
define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '5.8' );

0 commit comments

Comments
 (0)