Version Description
- 2020-01-13 =
- Tweak - Update constant VERSION in plugin file
Download this release
Release Info
Developer | harriswong |
Plugin | WooCommerce Google Analytics Integration |
Version | 1.4.17 |
Comparing to | |
See all releases |
Code changes from version 1.4.16 to 1.4.17
- changelog.txt +3 -0
- readme.txt +4 -1
- woocommerce-google-analytics-integration.php +2 -2
changelog.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
*** Changelog ***
|
2 |
|
|
|
|
|
|
|
3 |
= 1.4.16 - 2020-01-13 =
|
4 |
* Tweak - WC 3.9 compatibility.
|
5 |
|
1 |
*** Changelog ***
|
2 |
|
3 |
+
= 1.4.17 - 2020-01-13 =
|
4 |
+
* Tweak - Update constant VERSION in plugin file
|
5 |
+
|
6 |
= 1.4.16 - 2020-01-13 =
|
7 |
* Tweak - WC 3.9 compatibility.
|
8 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: woocommerce, claudiosanches, bor0, royho, laurendavissmith001, c-s
|
|
3 |
Tags: woocommerce, google analytics
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 5.3
|
6 |
-
Stable tag: 1.4.
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -68,6 +68,9 @@ Exact wording depends on the national data privacy laws and should be adjusted.
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
71 |
= 1.4.16 - 2020-01-13 =
|
72 |
* Tweak - WC 3.9 compatibility.
|
73 |
|
3 |
Tags: woocommerce, google analytics
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 5.3
|
6 |
+
Stable tag: 1.4.17
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 1.4.17 - 2020-01-13 =
|
72 |
+
* Tweak - Update constant VERSION in plugin file
|
73 |
+
|
74 |
= 1.4.16 - 2020-01-13 =
|
75 |
* Tweak - WC 3.9 compatibility.
|
76 |
|
woocommerce-google-analytics-integration.php
CHANGED
@@ -5,7 +5,7 @@
|
|
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.4.
|
9 |
* WC requires at least: 2.1
|
10 |
* WC tested up to: 3.9
|
11 |
* Tested up to: 5.3
|
@@ -30,7 +30,7 @@ if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
|
|
30 |
*
|
31 |
* @var string
|
32 |
*/
|
33 |
-
const VERSION = '1.4.
|
34 |
|
35 |
/**
|
36 |
* Instance of this class.
|
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.4.17
|
9 |
* WC requires at least: 2.1
|
10 |
* WC tested up to: 3.9
|
11 |
* Tested up to: 5.3
|
30 |
*
|
31 |
* @var string
|
32 |
*/
|
33 |
+
const VERSION = '1.4.17';
|
34 |
|
35 |
/**
|
36 |
* Instance of this class.
|