Skip to content

Commit ff321cf

Browse files
author
Kristófer R
committed
Merge branch 'trunk' into develop
2 parents 2034059 + 041cc09 commit ff321cf

File tree

5 files changed

+15
-13
lines changed

5 files changed

+15
-13
lines changed

changelog.txt

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

3-
= 6.4.0 - 2022-xx-xx =
3+
= 6.4.0 - 2022-05-20 =
44
* Fix - Changed logic for how 'Enabled/Disabled' statuses are shown for payments and payouts capabilities in settings.
5+
* Tweak - Updated the minimum supported versions of WordPress and WooCommerce.
56

67
= 6.3.0 - 2022-03-10 =
78
* Tweak - Remove html from translatable strings.

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

readme.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
=== WooCommerce Stripe Payment Gateway ===
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
4-
Requires at least: 5.6
4+
Requires at least: 5.7
55
Tested up to: 5.9
66
Requires PHP: 7.0
7-
Stable tag: 6.3.0
7+
Stable tag: 6.4.0
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010
Attributions: thorsten-stripe
@@ -128,7 +128,8 @@ If you get stuck, you can ask for help in the Plugin Forum.
128128

129129
== Changelog ==
130130

131-
= 6.4.0 - 2022-xx-xx =
131+
= 6.4.0 - 2022-05-20 =
132132
* Fix - Changed logic for how 'Enabled/Disabled' statuses are shown for payments and payouts capabilities in settings.
133+
* Tweak - Updated the minimum supported versions of WordPress and WooCommerce.
133134

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

woocommerce-gateway-stripe.php

Lines changed: 7 additions & 7 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.3.0
9-
* Requires at least: 5.6
8+
* Version: 6.4.0
9+
* Requires at least: 5.7
1010
* Tested up to: 5.9
11-
* WC requires at least: 5.7
12-
* WC tested up to: 6.5
11+
* WC requires at least: 6.2
12+
* WC tested up to: 6.4
1313
* Text Domain: woocommerce-gateway-stripe
1414
* Domain Path: /languages
1515
*/
@@ -21,10 +21,10 @@
2121
/**
2222
* Required minimums and constants
2323
*/
24-
define( 'WC_STRIPE_VERSION', '6.3.0' ); // WRCS: DEFINED_VERSION.
24+
define( 'WC_STRIPE_VERSION', '6.4.0' ); // WRCS: DEFINED_VERSION.
2525
define( 'WC_STRIPE_MIN_PHP_VER', '7.0.0' );
26-
define( 'WC_STRIPE_MIN_WC_VER', '5.7' );
27-
define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '5.8' );
26+
define( 'WC_STRIPE_MIN_WC_VER', '6.2' );
27+
define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '6.3' );
2828
define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
2929
define( 'WC_STRIPE_ABSPATH', __DIR__ . '/' );
3030
define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );

0 commit comments

Comments
 (0)