Skip to content

Commit c175c99

Browse files
authored
Merge pull request #506 from woocommerce/update/wp-wc-support-l-1
Bump the minimum required WordPress to 6.7 and WooCommerce to 9.9
2 parents 929b459 + c070614 commit c175c99

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/php-unit-tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,14 @@ jobs:
4545
uses: woocommerce/grow/get-plugin-releases@actions-v2
4646
with:
4747
slug: wordpress
48+
releases: 2
4849
- name: Get Release versions from WooCommerce
4950
id: wc
5051
uses: woocommerce/grow/get-plugin-releases@actions-v2
5152
with:
5253
slug: woocommerce
54+
releases: 2
55+
includeRC: true # If an RC is upcoming, test it preferably.
5356

5457
UnitTests:
5558
if: github.event_name != 'workflow_dispatch'
@@ -65,8 +68,8 @@ jobs:
6568
wc-versions: [ '${{ join(fromJson(needs.GetMatrix.outputs.wc-versions)) }}' ]
6669
include:
6770
- php: 7.4
68-
wp-version: ${{ fromJson(needs.GetMatrix.outputs.wp-versions)[2] }} # L-2 WP Version support
69-
wc-versions: ${{ fromJson(needs.GetMatrix.outputs.wc-versions)[2] }} # L-2 WC Version support
71+
wp-version: ${{ fromJson(needs.GetMatrix.outputs.wp-versions)[1] }} # L-1 WP Version support
72+
wc-versions: ${{ fromJson(needs.GetMatrix.outputs.wc-versions)[1] }} # L-1 WC Version support
7073
- php: 8.3
7174
wp-version: latest
7275
wc-versions: latest

phpcs.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<description>Generally-applicable sniffs for WordPress plugins</description>
44

55
<!-- Set the minimum WP version -->
6-
<config name="minimum_supported_wp_version" value="6.6"/>
6+
<config name="minimum_supported_wp_version" value="6.7"/>
77

88
<rule ref="WordPress">
99
<!-- We don't require conforming to WP file naming -->

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=== Google Analytics for WooCommerce ===
22
Contributors: woocommerce, automattic, claudiosanches, bor0, royho, laurendavissmith001, cshultz88, mmjones, tomalec
33
Tags: woocommerce, google analytics
4-
Requires at least: 6.6
4+
Requires at least: 6.7
55
Tested up to: 6.8
66
Stable tag: 2.1.16
77
License: GPLv3

woocommerce-google-analytics-integration.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
* Author: WooCommerce
77
* Author URI: https://woocommerce.com
88
* Version: 2.1.16
9-
* WC requires at least: 9.5
9+
* WC requires at least: 9.9
1010
* WC tested up to: 10.0
11-
* Requires at least: 6.6
11+
* Requires at least: 6.7
1212
* Requires Plugins: woocommerce
1313
* Tested up to: 6.8
1414
* Requires PHP: 7.4
@@ -27,7 +27,7 @@
2727
if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
2828

2929
define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '2.1.16' ); // WRCS: DEFINED_VERSION.
30-
define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_MIN_WC_VER', '9.5' );
30+
define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_MIN_WC_VER', '9.9' );
3131

3232
// Maybe show the GA Pro notice on plugin activation.
3333
register_activation_hook(

0 commit comments

Comments
 (0)