Skip to content

Commit 5fc16bc

Browse files
authored
Bump minimum supported version numbers to L-2 (#2539)
* update min supported version numbers * update github workflows * bump min php to 7.3 * fix WC levels in GH workflows * add changelog entry
1 parent 61fbf30 commit 5fc16bc

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

.github/workflows/php-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
include:
1717
# WooCommerce
1818
- woocommerce_support_policy: L
19-
woocommerce: '7.0.0'
19+
woocommerce: '7.3.0'
2020
- woocommerce_support_policy: L-1
21-
woocommerce: '6.9.4'
21+
woocommerce: '7.1.1'
2222
- woocommerce_support_policy: L-2
23-
woocommerce: '6.8.2'
23+
woocommerce: '6.9.0'
2424
# WordPress
2525
- wordpress_support_policy: L
26-
wordpress: '6.0'
26+
wordpress: '6.1'
2727
- wordpress_support_policy: L-1
28-
wordpress: '5.9'
28+
wordpress: '6.0'
2929
- wordpress_support_policy: L-2
30-
wordpress: '5.8'
30+
wordpress: '5.9'
3131
# PHP
3232
- php_support_policy: L
3333
php: '8.0'

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
= 7.1.0 - 2023-xx-xx =
44
* Fix - Replace some post meta methods with equivalent methods compatible with HPOS.
55
* Fix - Rare cases of payment processing failing when webhooks arrive before customer is redirected when UPE is enabled will no longer occur.
6+
* Tweak - Update minimum supported versions for WordPress, WooCommerce, and PHP.
67

78
= 7.0.2 - 2023-01-11 =
89
* Fix - Expand charges object from incoming webhooks using Stripe API version 2022-11-15.

readme.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
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.7
5-
Tested up to: 6.0
6-
Requires PHP: 7.0
4+
Requires at least: 5.9
5+
Tested up to: 6.1
6+
Requires PHP: 7.3
77
Stable tag: 7.0.2
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
@@ -130,6 +130,7 @@ If you get stuck, you can ask for help in the Plugin Forum.
130130

131131
= 7.1.0 - 2023-xx-xx =
132132
* Fix - Replace some post meta methods with equivalent methods compatible with HPOS.
133+
* Tweak - Update minimum supported versions for WordPress, WooCommerce, and PHP.
133134

134135

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

woocommerce-gateway-stripe.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
* Author: WooCommerce
77
* Author URI: https://woocommerce.com/
88
* Version: 7.0.2
9-
* Requires at least: 5.8
10-
* Tested up to: 6.0
11-
* WC requires at least: 6.8
12-
* WC tested up to: 7.0
9+
* Requires at least: 5.9
10+
* Tested up to: 6.1
11+
* WC requires at least: 6.9
12+
* WC tested up to: 7.3
1313
* Text Domain: woocommerce-gateway-stripe
1414
* Domain Path: /languages
1515
*/
@@ -23,8 +23,8 @@
2323
*/
2424
define( 'WC_STRIPE_VERSION', '7.0.2' ); // WRCS: DEFINED_VERSION.
2525
define( 'WC_STRIPE_MIN_PHP_VER', '7.3.0' );
26-
define( 'WC_STRIPE_MIN_WC_VER', '6.8' );
27-
define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '6.9' );
26+
define( 'WC_STRIPE_MIN_WC_VER', '6.9' );
27+
define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '7.1' );
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)