Version Description
- 2022-12-14 =
- Add - .nvmrc file.
- Tweak - WC 7.2 compatibility.
Download this release
Release Info
Developer | automattic |
Plugin | WooCommerce Google Analytics Integration |
Version | 1.5.18 |
Comparing to | |
See all releases |
Code changes from version 1.5.17 to 1.5.18
- changelog.txt +4 -0
- readme.txt +5 -1
- woocommerce-google-analytics-integration.php +3 -3
changelog.txt
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
*** Changelog ***
|
2 |
|
|
|
|
|
|
|
|
|
3 |
= 1.5.17 - 2022-11-09 =
|
4 |
* Add - New Google Analytics task in WC.
|
5 |
|
1 |
*** Changelog ***
|
2 |
|
3 |
+
= 1.5.18 - 2022-12-14 =
|
4 |
+
* Add - .nvmrc file.
|
5 |
+
* Tweak - WC 7.2 compatibility.
|
6 |
+
|
7 |
= 1.5.17 - 2022-11-09 =
|
8 |
* Add - New Google Analytics task in WC.
|
9 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: woocommerce, automattic, claudiosanches, bor0, royho, laurendaviss
|
|
3 |
Tags: woocommerce, google analytics
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 6.1
|
6 |
-
Stable tag: 1.5.
|
7 |
License: GPLv3
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -60,6 +60,10 @@ Exact wording depends on the national data privacy laws and should be adjusted.
|
|
60 |
|
61 |
== Changelog ==
|
62 |
|
|
|
|
|
|
|
|
|
63 |
= 1.5.17 - 2022-11-09 =
|
64 |
* Add - New Google Analytics task in WC.
|
65 |
|
3 |
Tags: woocommerce, google analytics
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 6.1
|
6 |
+
Stable tag: 1.5.18
|
7 |
License: GPLv3
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
60 |
|
61 |
== Changelog ==
|
62 |
|
63 |
+
= 1.5.18 - 2022-12-14 =
|
64 |
+
* Add - .nvmrc file.
|
65 |
+
* Tweak - WC 7.2 compatibility.
|
66 |
+
|
67 |
= 1.5.17 - 2022-11-09 =
|
68 |
* Add - New Google Analytics task in WC.
|
69 |
|
woocommerce-google-analytics-integration.php
CHANGED
@@ -5,9 +5,9 @@
|
|
5 |
* Description: Allows Google Analytics tracking code to be inserted into WooCommerce store pages.
|
6 |
* Author: WooCommerce
|
7 |
* Author URI: https://woocommerce.com
|
8 |
-
* Version: 1.5.
|
9 |
* WC requires at least: 6.8
|
10 |
-
* WC tested up to: 7.
|
11 |
* Tested up to: 6.1
|
12 |
* License: GPLv2 or later
|
13 |
* Text Domain: woocommerce-google-analytics-integration
|
@@ -22,7 +22,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
22 |
|
23 |
if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
|
24 |
|
25 |
-
define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '1.5.
|
26 |
define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_MIN_WC_VER', '6.8' );
|
27 |
|
28 |
// Maybe show the GA Pro notice on plugin activation.
|
5 |
* Description: Allows Google Analytics tracking code to be inserted into WooCommerce store pages.
|
6 |
* Author: WooCommerce
|
7 |
* Author URI: https://woocommerce.com
|
8 |
+
* Version: 1.5.18
|
9 |
* WC requires at least: 6.8
|
10 |
+
* WC tested up to: 7.2
|
11 |
* Tested up to: 6.1
|
12 |
* License: GPLv2 or later
|
13 |
* Text Domain: woocommerce-google-analytics-integration
|
22 |
|
23 |
if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
|
24 |
|
25 |
+
define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '1.5.18' ); // WRCS: DEFINED_VERSION.
|
26 |
define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_MIN_WC_VER', '6.8' );
|
27 |
|
28 |
// Maybe show the GA Pro notice on plugin activation.
|